We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
dbExistsTable always return FALSE for name type either character or in_schema.
dbCreateTable(con, 'iris', iris, use.one.query=T) dbExistsTable(con, 'iris') # FALSE dbExistsTable(con, in_schema('new_schema', 'iris')) #FALSE
Looked into the codes in dbExistsTable, the issue is that table and schema names are not rendered correctly
RPresto/R/dbExistsTable.R
Lines 17 to 28 in 804c29a
The check sql executed is:
"\n SELECT COUNT(*) AS n\n FROM information_schema.columns\n WHERE\n table_catalog = 'hive' AND\n table_schema = 'default' AND\n table_name = 'NA'\n "
Package Version:
DBI: 1.2.3 dbplyr: 2.4.0 RPresto: 1.4.6.9000
The text was updated successfully, but these errors were encountered:
This is a compatibility issue with DBI >= 1.2.0
DBI::dbUnquoteIdentifier starts to create Id() objects without component names after version 1.2.0, see this PR r-dbi/DBI#422.
DBI::dbUnquoteIdentifier
Id()
Sorry, something went wrong.
No branches or pull requests
dbExistsTable always return FALSE for name type either character or in_schema.
Looked into the codes in dbExistsTable, the issue is that table and schema names are not rendered correctly
RPresto/R/dbExistsTable.R
Lines 17 to 28 in 804c29a
The check sql executed is:
Package Version:
The text was updated successfully, but these errors were encountered: