Replies: 1 comment
-
I have exactly the same problem Windows x64 10 Pro, Python 3.12.7 x64
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm encountering an unexpected behavior while defining relationships between models in my configuration. I have two models:
stg_jaffle_shop__customers
andstg_jaffle_shop__orders
. In my YAML configuration, I attempted to establish a relationship between thecustomer_id
instg_jaffle_shop__orders
and theid
instg_jaffle_shop__customers
using dbt (Data Build Tool) as shown below:However, I mistakenly wrote
stg_jaffle_shop_customers
instead ofstg_jaffle_shop__customers
. Despite this error, instead of receiving an error message due to the non-existent model, I'm getting the following output:Is this behavior expected? I anticipated an error due to referencing a non-existent model.
I use dbt
1.1.5
and the plugin bigquery1.1.0
.Beta Was this translation helpful? Give feedback.
All reactions