We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b31ab78 commit 7676aa1Copy full SHA for 7676aa1
1 file changed
tests/core/engine_adapter/integration/test_integration.py
@@ -2423,9 +2423,9 @@ def capture_execution_stats(
2423
2424
if ctx.engine_adapter.SUPPORTS_QUERY_EXECUTION_TRACKING:
2425
assert actual_execution_stats["incremental_model"].total_rows_processed == 7
2426
- # snowflake doesn't track rows for CTAS
+ # snowflake and redshift don't track rows for CTAS
2427
assert actual_execution_stats["full_model"].total_rows_processed == (
2428
- None if ctx.mark.startswith("snowflake") else 3
+ None if ctx.mark.startswith("snowflake") or ctx.mark.startswith("redshift") else 3
2429
)
2430
assert actual_execution_stats["seed_model"].total_rows_processed == (
2431
None if ctx.mark.startswith("snowflake") else 7
0 commit comments