Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RStudio Edition : Desktop RStudio Version : v1.2.1015 OS Version : macOS 10.14 R Version : 3.5.1
Using this document:
```{r} library(RPostgres) conn <- dbConnect(RPostgres::Postgres()) dbWriteTable(conn, "mtcars", mtcars) ``` ```{sql, connection=conn} select mpg, cyl from public.mtcars ```
Fields are not autocompleted from the mtcars table.
mtcars
The SQL autocompletion system needs to better understand references to tables from schemas.
The text was updated successfully, but these errors were encountered:
dbListObjects() will likely be helpful here, as it exposes information on the schemas available with a particular connection.
dbListObjects()
Sorry, something went wrong.
kevinushey
No branches or pull requests
System details
Steps to reproduce the problem
Using this document:
Describe the problem in detail
Fields are not autocompleted from the
mtcarstable.Describe the behavior you expected
The SQL autocompletion system needs to better understand references to tables from schemas.
The text was updated successfully, but these errors were encountered: