You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dialect: The SQL dialect that the model's query is written in. By default,
@@ -60,14 +58,12 @@ class ModelConfig(BaseModelConfig):
60
58
materialized: How the model will be materialized in the database
61
59
sql_header: SQL statement to inject above create table/view as
62
60
unique_key: List of columns that define row uniqueness for the model
63
-
partition_by: Dictionary of bigquery partition by parameters ([dbt bigquery config](https://docs.getdbt.com/reference/resource-configs/bigquery-configs)).
64
-
If partitioned_by is set, this field will be ignored.
61
+
partition_by: List of partition columns or dictionary of bigquery partition by parameters ([dbt bigquery config](https://docs.getdbt.com/reference/resource-configs/bigquery-configs)).
65
62
"""
66
63
67
64
# sqlmesh fields
68
65
sql: SqlStr=SqlStr("")
69
66
time_column: t.Optional[str] =None
70
-
partitioned_by: t.Optional[t.List[str]] =None
71
67
cron: t.Optional[str] =None
72
68
dialect: t.Optional[str] =None
73
69
batch_size: t.Optional[int] =None
@@ -92,7 +88,6 @@ class ModelConfig(BaseModelConfig):
0 commit comments