Skip to content
New issue

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

[CT-3074] [Bug] Quoting not respected in freshness query #8547

Closed
2 tasks done
albertsgrc opened this issue Sep 5, 2023 · 2 comments
Closed
2 tasks done

[CT-3074] [Bug] Quoting not respected in freshness query #8547

albertsgrc opened this issue Sep 5, 2023 · 2 comments
Labels
enhancement New feature or request

Comments

@albertsgrc
Copy link

albertsgrc commented Sep 5, 2023

Is this a new bug in dbt-core?

  • I believe this is a new bug in dbt-core
  • I have searched the existing issues, and I could not find an existing issue for this bug

Current Behavior

When quoting is enabled for a source table column, the freshness query does not quote the loaded_at_field column.

Expected Behavior

The loaded_at_field column is quoted in the freshness query when quoting is enabled for the column in the source table definition.

Steps To Reproduce

  1. Create a table with a lowercase loaded_at timestamp column in a Snowflake data warehouse.
  2. Add a source for the table in DBT. Set the source setting loaded_at_field: loaded_at, and configure freshness checks. Set quote: true in the column configuration for loaded_at.
  3. Run dbt source freshness.
  4. Observe the error invalid identifier 'LOADED_AT'.

Relevant log output

07:51:19  Database Error in source search_analytics_all_fields (models/staging/google_search_console/google_search_console__sources.yml)
07:51:19    000904 (42000): SQL compilation error: error line 2 at position 10
07:51:19    invalid identifier '_AIRBYTE_EXTRACTED_AT'

Environment

- OS: macOS Monterrey 12.6
- Python: 3.10.12
- dbt: 1.5.1

Which database adapter are you using with dbt?

snowflake

Additional Context

No response

@albertsgrc albertsgrc added bug Something isn't working triage labels Sep 5, 2023
@github-actions github-actions bot changed the title [Bug] Quoting not respected in freshness query [CT-3074] [Bug] Quoting not respected in freshness query Sep 5, 2023
@graciegoheen graciegoheen self-assigned this Sep 6, 2023
@graciegoheen
Copy link
Contributor

graciegoheen commented Sep 6, 2023

Hello! Thanks for opening this up.

The input to the loaded_at_field is actually just any string (you could put something like loaded_at_field: "convert_timezone('UTC', 'Australia/Sydney', created_at_local)" as your input) - it's not actually mapping to a specific column in your source. Because of this, it's not aware that quote: true.

You should be able to add quotes to your string like this loaded_at_field: "'loaded_at'". Let me know if that fixes this issue for you.

This is similar to these issues:

where we're just handing inputs as a string.

We could try to do something smarter here and check if the column you've specified for loaded_at_field exists in the table:

{% macro default__collect_freshness(source, loaded_at_field, filter) %}

@graciegoheen graciegoheen added enhancement New feature or request and removed bug Something isn't working triage labels Sep 6, 2023
@graciegoheen graciegoheen removed their assignment Sep 6, 2023
@albertsgrc
Copy link
Author

Ah, gotcha! Thanks a lot for the answer Grace. I remember trying that and it did not work back then, probably for some other reason.

Now I tried loaded_at_field: '"loaded_at"' and it did work.

@graciegoheen graciegoheen closed this as not planned Won't fix, can't repro, duplicate, stale Sep 27, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants