File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/core/engine_adapter/integration Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments