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
I have a schema starting with a number as 10_TEXT. I'm trying to test with dbt-utils/unique_combination_of_columns. This test call one way or another macros/materializations/tests/helpers.sql. What causes my problem is the part of the code where the square brackets are forgotten :
{% set testview %} {{ target.schema }}.testview_{{ range(1300, 19000) | random }} {% endset %}
that should be
{% set testview %} [{{ target.schema }}].[testview_{{ range(1300, 19000) | random }}] {% endset %}
dbt : 1.8.2 dbt-fabric : 1.8.6 dbt-labs/dbt_utils: 1.2.0 driver: ODBC Driver 18
in dbt_project.yml :
quoting: database: true schema: true identifier: true
The text was updated successfully, but these errors were encountered:
Addressed #197
faa2cb0
Merge pull request #192 from microsoft/v1.8.7
d4f99e7
Addressing issues 189, 188, 181, 179, #197
No branches or pull requests
I have a schema starting with a number as 10_TEXT. I'm trying to test with dbt-utils/unique_combination_of_columns.
This test call one way or another macros/materializations/tests/helpers.sql.
What causes my problem is the part of the code where the square brackets are forgotten :
that should be
dbt : 1.8.2
dbt-fabric : 1.8.6
dbt-labs/dbt_utils: 1.2.0
driver: ODBC Driver 18
in dbt_project.yml :
The text was updated successfully, but these errors were encountered: