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
quoting
false
Looks like dbt generated statements to drop tables use quoted identifiers even if the quoting settings are set to false in dbt_project.yml.
dbt_project.yml
Example:
quoting: identifier: false schema: false
From log:
drop table if exists "DW"."F_FREIGHT_COST" cascade
The text was updated successfully, but these errors were encountered:
Merge pull request #991 from fishtown-analytics/fix/drop-table-quoting
16fa082
Fix table/schema quoting on drop, truncate, and rename (#983)
Fixed in #991
Sorry, something went wrong.
beckjake
No branches or pull requests
Looks like dbt generated statements to drop tables use quoted identifiers even if the
quoting
settings are set tofalse
indbt_project.yml
.Example:
From log:
The text was updated successfully, but these errors were encountered: