You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Core:
- installed: 1.8.0
- latest: 1.9.1 - Update available!
Your version of dbt-core is out of date!
You can find instructions for upgrading here:
https://docs.getdbt.com/docs/installation
Plugins:
- snowflake: 1.8.1 - Update available!
At least one plugin is out of date or incompatible with dbt-core.
You can find instructions for upgrading here:
https://docs.getdbt.com/docs/installation
Additional context
Are you interested in contributing the fix?
The text was updated successfully, but these errors were encountered:
hey @will-regal-voice ! thanks for the issue. the macro that contains the regexshould be looking only at from and join clauses, but it's regex, so it's a bit finnicky. we can try to take a look and see if we can reproduce the error!
apologies, it turns out this was an issue with a multi-line comment in the same model. That comment had the phrase "from a.b.c", which failed the test. It wasn't "from" in the SQL meaning, but it makes sense that it failed.
Describe the bug
the test is_empty_fct_hard_coded_references fails for any string of the format 'a.b.c', even if it is not a table reference.
Steps to reproduce
Add a line like
This doesn't seem like the intention of the test. IMO it should be restricted to only the
FROM
clause or similar.Expected results
the test doesn't fail
Actual results
the test fails
Screenshots and log output
System information
The contents of your
packages.yml
file:packages:
version: 0.10.4
version: 0.12.1
version: 0.13.1
version: 1.3.0
version: 5.3.1
version: 1.0.0
Which database are you using dbt with?
The output of
dbt --version
:Additional context
Are you interested in contributing the fix?
The text was updated successfully, but these errors were encountered: