Skip to content

Commit becdfdc

Browse files
committed
only quote for snowflake
1 parent 9412bf2 commit becdfdc

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
@@ -1961,9 +1961,10 @@ def test_sushi(ctx: TestContext, tmp_path_factory: pytest.TempPathFactory):
19611961
f"CREATE VIEW {raw_test_schema}.demographics AS (SELECT 1 AS customer_id, '00000' AS zip)",
19621962
]
19631963
config.before_all = [
1964-
quote_identifiers(parse_one(e, dialect=ctx.dialect), dialect=ctx.dialect).sql(
1965-
dialect=ctx.dialect
1966-
)
1964+
quote_identifiers(
1965+
parse_one(e, dialect=config.model_defaults.dialect),
1966+
dialect=config.model_defaults.dialect,
1967+
).sql(dialect=config.model_defaults.dialect)
19671968
for e in before_all
19681969
]
19691970

0 commit comments

Comments
 (0)