Skip to content

Commit 926b9cc

Browse files
committed
only quote for snowflake
1 parent 31bcbdb commit 926b9cc

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/core/engine_adapter/integration/test_integration.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1921,9 +1921,10 @@ def test_sushi(ctx: TestContext, tmp_path_factory: pytest.TempPathFactory):
19211921
f"CREATE VIEW {raw_test_schema}.demographics AS (SELECT 1 AS customer_id, '00000' AS zip)",
19221922
]
19231923
config.before_all = [
1924-
quote_identifiers(parse_one(e, dialect=ctx.dialect), dialect=ctx.dialect).sql(
1925-
dialect=ctx.dialect
1926-
)
1924+
quote_identifiers(
1925+
parse_one(e, dialect=config.model_defaults.dialect),
1926+
dialect=config.model_defaults.dialect,
1927+
).sql(dialect=config.model_defaults.dialect)
19271928
for e in before_all
19281929
]
19291930

0 commit comments

Comments
 (0)