Skip to content
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

adding transient dynamic table capabilities #1210

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Prev Previous commit
fix test fixture
  • Loading branch information
colin-rogers-dbt committed Nov 23, 2024
commit c35bcb192ba14102a39a3830bd4ad1dbf230a483
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ def uses_iceberg(self) -> bool:

relations = [
Model(models.VIEW, "view"),
Model(models.TABLE, "table", "default"),
Model(models.INCREMENTAL_TABLE, "table", "default", is_incremental=True),
Model(models.TABLE, "table_transient", "default"),
Model(models.INCREMENTAL_TABLE, "table_transient", "default", is_incremental=True),
Model(models.DYNAMIC_TABLE, "dynamic_table", "default"),
Model(models.ICEBERG_TABLE, "table", "iceberg"),
Model(models.INCREMENTAL_ICEBERG_TABLE, "table", "iceberg", is_incremental=True),
Expand Down
Loading