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
Views are named with __dbt_tmp suffix
create view joined_data__dbt_tmp /** mode('streaming')*/ as ( select cs.event_timestamp, cs.user_id, cs.event, trx.source, trx.target, trx.amount, trx.deposit_balance_after_trx, trx.credit_balance_after_trx from clickstream as cs join trx as trx on cs.user_id = trx.user_id and cs.event_timestamp = trx.event_timestamp );"
But {{ ref('joined_data') }} returns just joined_data.
joined_data
As temporary I will make view do not use __dbt_tmp.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Views are named with __dbt_tmp suffix
But {{ ref('joined_data') }} returns just
joined_data
.As temporary I will make view do not use __dbt_tmp.
The text was updated successfully, but these errors were encountered: