Skip to content

Commit 126b7e4

Browse files
authored
Fix: qualify information schema query for duckdb (#3646)
1 parent 518ae77 commit 126b7e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlmesh/core/engine_adapter/duckdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def _get_data_objects(
103103
)
104104
.as_("type"),
105105
)
106-
.from_(exp.to_table("information_schema.tables"))
106+
.from_(exp.to_table("system.information_schema.tables"))
107107
.where(
108108
exp.column("table_catalog").eq(catalog), exp.column("table_schema").eq(schema_name)
109109
)

0 commit comments

Comments
 (0)