@@ -4346,7 +4346,7 @@ show_modifytable_info(ModifyTableState *mtstate, List *ancestors,
43464346 update_path = mtstate -> mt_merge_updated ;
43474347 delete_path = mtstate -> mt_merge_deleted ;
43484348 skipped_path = total - insert_path - update_path - delete_path ;
4349- if (compatible_db != DB_ORACLE )
4349+ if (compatible_db != ORA_PARSER )
43504350 Assert (skipped_path >= 0 );
43514351
43524352 if (es -> format == EXPLAIN_FORMAT_TEXT )
@@ -4363,7 +4363,7 @@ show_modifytable_info(ModifyTableState *mtstate, List *ancestors,
43634363 appendStringInfo (es -> str , " deleted=%.0f" , delete_path );
43644364 if (skipped_path > 0 )
43654365 {
4366- if (compatible_db != DB_ORACLE )
4366+ if (compatible_db != ORA_PARSER )
43674367 appendStringInfo (es -> str , " skipped=%.0f" , skipped_path );
43684368 }
43694369 appendStringInfoChar (es -> str , '\n' );
@@ -4374,7 +4374,7 @@ show_modifytable_info(ModifyTableState *mtstate, List *ancestors,
43744374 ExplainPropertyFloat ("Tuples Inserted" , NULL , insert_path , 0 , es );
43754375 ExplainPropertyFloat ("Tuples Updated" , NULL , update_path , 0 , es );
43764376 ExplainPropertyFloat ("Tuples Deleted" , NULL , delete_path , 0 , es );
4377- if (compatible_db != DB_ORACLE )
4377+ if (compatible_db != ORA_PARSER )
43784378 ExplainPropertyFloat ("Tuples Skipped" , NULL , skipped_path , 0 , es );
43794379 }
43804380 }
0 commit comments