File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33from sqlmesh .core .config import (
44 AirflowSchedulerConfig ,
55 AutoCategorizationMode ,
6+ BigQueryConnectionConfig ,
67 CategorizerConfig ,
78 Config ,
89 DuckDBConnectionConfig ,
2930 model_defaults = ModelDefaultsConfig (dialect = "duckdb" ),
3031)
3132
33+ bigquery_config = Config (
34+ gateways = {
35+ "gcp" : GatewayConfig (
36+ connection = BigQueryConnectionConfig (),
37+ state_connection = DuckDBConnectionConfig (database = f"{ DATA_DIR } /bigquery.duckdb" ),
38+ )
39+ },
40+ default_gateway = "gcp" ,
41+ model_defaults = ModelDefaultsConfig (dialect = "bigquery" ),
42+ )
3243
3344# A configuration used for SQLMesh tests.
3445test_config = Config (
Original file line number Diff line number Diff line change 116116 "dbt-sqlserver" ,
117117 ],
118118 "dbt" : [
119- "dbt-core<1.5.0 " ,
119+ "dbt-core<2 " ,
120120 ],
121121 "gcppostgres" : [
122122 "cloud-sql-python-connector[pg8000]" ,
You can’t perform that action at this time.
0 commit comments