-
Notifications
You must be signed in to change notification settings - Fork 168
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
ADAP-400: Support materialized views with create/drop functionality #639
Conversation
Thank you for your pull request! We could not find a changelog entry for this change. For details on how to document a change, see the dbt-bigquery contributing guide. |
1 similar comment
Thank you for your pull request! We could not find a changelog entry for this change. For details on how to document a change, see the dbt-bigquery contributing guide. |
…lized-views/ADAP-390
…390' into feature/materialized-views/ADAP-390
…lized-views/ADAP-390
…390' into feature/materialized-views/ADAP-390
…feature/materialized-views/ADAP-390
dbt/include/bigquery/macros/relations/materialized_view/_replace.sql
Outdated
Show resolved
Hide resolved
dbt/include/bigquery/macros/relations/materialized_view/alter.sql
Outdated
Show resolved
Hide resolved
dbt/include/bigquery/macros/relations/materialized_view/refresh.sql
Outdated
Show resolved
Hide resolved
tests/functional/adapter/materialized_view_tests/test_materialized_view.py
Show resolved
Hide resolved
…e functionality, fixed signatures on some macros, added new type to adapter class
…390' into feature/materialized-views/ADAP-390
…390' into feature/materialized-views/ADAP-390
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like this is at the end state me and Mike worked toward two weeks ago and put in line for the mergers of initial prs on remaining work.
resolves dbt-labs/dbt-core#6911
Description
Stub out the materialized view materialization for Redshift. Under the hood this just creates a view for now. But this can be used to verify all of the plumbing.
While creating the materialization, it was observed that other materialization templates existed outside of the
materialization
directory. These were moved fromadapters.sql
into thematerialization
directory in the appropriate file (e.g.table.sql
). Some of the macros were also refactored to be smaller bits of code anddbt-postgres
dependencies were eliminated when found.Checklist
changie new
to create a changelog entry