From 053b4cd2f8421eeaa88abdccba1165f49c4da004 Mon Sep 17 00:00:00 2001 From: Trey Spiller Date: Wed, 10 Sep 2025 14:50:49 -0500 Subject: [PATCH] Update row test bc redshift now uses CTAS --- tests/core/engine_adapter/integration/test_integration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/core/engine_adapter/integration/test_integration.py b/tests/core/engine_adapter/integration/test_integration.py index ccea105bcf..e02877e0c6 100644 --- a/tests/core/engine_adapter/integration/test_integration.py +++ b/tests/core/engine_adapter/integration/test_integration.py @@ -2423,9 +2423,9 @@ def capture_execution_stats( if ctx.engine_adapter.SUPPORTS_QUERY_EXECUTION_TRACKING: assert actual_execution_stats["incremental_model"].total_rows_processed == 7 - # snowflake doesn't track rows for CTAS + # snowflake and redshift don't track rows for CTAS assert actual_execution_stats["full_model"].total_rows_processed == ( - None if ctx.mark.startswith("snowflake") else 3 + None if ctx.mark.startswith("snowflake") or ctx.mark.startswith("redshift") else 3 ) assert actual_execution_stats["seed_model"].total_rows_processed == ( None if ctx.mark.startswith("snowflake") else 7