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
dbt test
dbt test fails on not_null test when column name is a keyword e.g. order, with the following error message:
not_null
order
An error occurred (InvalidRequestException) when calling the StartQueryExecution operation: Queries of this type are not supported
Column and column test definition from .yml file:
columns: - name: order tests: - not_null
Compiled column not_null test
select order from dwh.table where order is null
Maybe this can be solved by quoting the column names in the compiled test sql? E.G
select "order" from dwh.table where "order" is null
The text was updated successfully, but these errors were encountered:
chore: Update dbt-tests-adapter requirement from ~=1.3.0 to ~=1.3.2 (T…
3cc1d85
…omme#116) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: nicor88 <[email protected]>
No branches or pull requests
dbt test
fails onnot_null
test when column name is a keyword e.g.order
, with the following error message:Column and column test definition from .yml file:
Compiled column
not_null
testMaybe this can be solved by quoting the column names in the compiled test sql? E.G
The text was updated successfully, but these errors were encountered: