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
DBItest/R/utils.R
Lines 66 to 69 in f19fb4d
For us, CREATE TABLE abcdefg is not allowed -- all tables must be qualified as part of a namespace.
CREATE TABLE abcdefg
We already have tweaks$create_table_as to handle this, but it does not cover all the places where CREATE TABLE statements are attempted, e.g.
tweaks$create_table_as
CREATE TABLE
DBItest/R/spec-result-fetch.R
Lines 87 to 97 in f19fb4d
I think having tweaks$random_table_name() instead would be a better/more general solution.
tweaks$random_table_name()
Does that sound right? How does one edit the set of tweaks, exactly?
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
DBItest/R/utils.R
Lines 66 to 69 in f19fb4d
For us,
CREATE TABLE abcdefg
is not allowed -- all tables must be qualified as part of a namespace.We already have
tweaks$create_table_as
to handle this, but it does not cover all the places whereCREATE TABLE
statements are attempted, e.g.DBItest/R/spec-result-fetch.R
Lines 87 to 97 in f19fb4d
I think having
tweaks$random_table_name()
instead would be a better/more general solution.Does that sound right? How does one edit the set of tweaks, exactly?
The text was updated successfully, but these errors were encountered: