You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would expect DBI::dbListObject() and odbc::odbcListObjects() to produce the same result. Or, at least, that DBI::dbListObject() would return schemas as well as tables.
Browse[2]> DBI::dbListObjects(conn)
table is_prefix
1 <Id> table = mtcars FALSE
Browse[2]> odbc::odbcListObjects(conn)
name type
1 pg_toast_temp_1 schema
2 public schema
It is possible we should add a dbListObjects() method that includes the schemas (with is_prefix == TRUE), but odbcListObjects() is intended to produce a different type of result in this case.
Issue Description and Expected Result
I would expect
DBI::dbListObject()
andodbc::odbcListObjects()
to produce the same result. Or, at least, thatDBI::dbListObject()
would return schemas as well as tables.Database
Reproducible Example
Created on 2018-10-05 by the reprex package (v0.2.1)
Session Info
The text was updated successfully, but these errors were encountered: