Skip to content

Commit 7676aa1

Browse files
authored
Chore: update row test bc redshift now uses CTAS (#5344)
1 parent b31ab78 commit 7676aa1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/core/engine_adapter/integration/test_integration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2423,9 +2423,9 @@ def capture_execution_stats(
24232423

24242424
if ctx.engine_adapter.SUPPORTS_QUERY_EXECUTION_TRACKING:
24252425
assert actual_execution_stats["incremental_model"].total_rows_processed == 7
2426-
# snowflake doesn't track rows for CTAS
2426+
# snowflake and redshift don't track rows for CTAS
24272427
assert actual_execution_stats["full_model"].total_rows_processed == (
2428-
None if ctx.mark.startswith("snowflake") else 3
2428+
None if ctx.mark.startswith("snowflake") or ctx.mark.startswith("redshift") else 3
24292429
)
24302430
assert actual_execution_stats["seed_model"].total_rows_processed == (
24312431
None if ctx.mark.startswith("snowflake") else 7

0 commit comments

Comments
 (0)