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
The execute and compile endpoints of the RPC server should support ephemeral models. Presently, referencing an ephemeral models fails with:
execute
compile
'ParsedNode' has no attribute 'extra_ctes_injected'
models/base/my_ephemeral_model.sql
{{ config(materialized='ephemeral') }} select 1 as id
Query
select * from {{ ref('my_ephemeral_model') }}
Compiling/executing this query should result in:
with __dbt_cte_my_ephemeral_model as ( select 1 as id ) select * from __dbt_cte_my_ephemeral_model
(or similar)
The text was updated successfully, but these errors were encountered:
Merge pull request #1373 from fishtown-analytics/fix/rpc-ephemeral-clean
bea2d4f
Support ephemeral nodes (#1368)
No branches or pull requests
Issue
Issue description
The
execute
andcompile
endpoints of the RPC server should support ephemeral models. Presently, referencing an ephemeral models fails with:Reproduction
models/base/my_ephemeral_model.sql
Query
Compiling/executing this query should result in:
(or similar)
The text was updated successfully, but these errors were encountered: