File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
tests/core/engine_adapter/integration Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -2413,13 +2413,12 @@ def capture_execution_stats(
24132413 assert len (physical_layer_results .tables ) == len (physical_layer_results .non_temp_tables ) == 3
24142414
24152415 if ctx .engine_adapter .SUPPORTS_QUERY_EXECUTION_TRACKING :
2416+ assert actual_execution_stats ["seed_model" ].total_rows_processed == 7
24162417 assert actual_execution_stats ["incremental_model" ].total_rows_processed == 7
24172418 # snowflake doesn't track rows for CTAS
24182419 assert actual_execution_stats ["full_model" ].total_rows_processed == (
24192420 None if ctx .mark .startswith ("snowflake" ) else 3
24202421 )
2421- # seed rows aren't tracked
2422- assert actual_execution_stats ["seed_model" ].total_rows_processed is None
24232422
24242423 if ctx .mark .startswith ("bigquery" ) or ctx .mark .startswith ("databricks" ):
24252424 assert actual_execution_stats ["incremental_model" ].total_bytes_processed is not None
You can’t perform that action at this time.
0 commit comments