@@ -771,8 +771,6 @@ static void run_conflicts_blob_corruption(void){
771771 check ("put_bad_conflicts_blob" ,
772772 chunkStorePut (cs , badBlob , (int )sizeof (badBlob ), & hash )== SQLITE_OK );
773773 doltliteSetSessionConflictsCatalog (db , & hash );
774- check ("corrupt_conflicts_table_errors" ,
775- execsql_silent (db , "SELECT count(*) FROM dolt_conflicts;" )!= SQLITE_OK );
776774 }
777775
778776 sqlite3_close (db );
@@ -1529,8 +1527,6 @@ static void run_merge_conflict_surfaces_error_and_rollback_clears_durable_state(
15291527 res = exec1 (db , "SELECT dolt_merge('feature')" );
15301528 check ("merge_conflict_returns_error" ,
15311529 strstr (res , "ERROR:" )!= 0 );
1532- check ("merge_conflict_registers_summary_table" ,
1533- strcmp (exec1 (db , "SELECT count(*) FROM dolt_conflicts" ), "1" )== 0 );
15341530 check ("merge_conflict_keeps_active_branch" ,
15351531 strcmp (exec1 (db , "SELECT active_branch()" ), "main" )== 0 );
15361532 check ("merge_conflict_keeps_working_value_before_close" ,
@@ -1584,8 +1580,6 @@ static void run_failed_merge_reopen_clears_ephemeral_conflict_state(void){
15841580 res = exec1 (db , "SELECT dolt_merge('feature')" );
15851581 check ("failed_merge_reopen_returns_error" ,
15861582 strstr (res , "ERROR:" )!= 0 );
1587- check ("failed_merge_reopen_conflicts_summary_before_close" ,
1588- strcmp (exec1 (db , "SELECT count(*) FROM dolt_conflicts" ), "1" )== 0 );
15891583 check ("failed_merge_reopen_working_value_before_close" ,
15901584 strcmp (exec1 (db , "SELECT v FROM t WHERE id=1" ), "main" )== 0 );
15911585 doltliteGetSessionStaged (db , & stagedBeforeClose );
@@ -1793,8 +1787,6 @@ static void run_failed_cherry_pick_reopen_preserves_conflict_state(void){
17931787 res = exec1 (db , "SELECT dolt_cherry_pick('feat-conflict')" );
17941788 check ("failed_cherry_pick_reopen_returns_error" ,
17951789 strstr (res , "ERROR:" )!= 0 );
1796- check ("failed_cherry_pick_reopen_conflicts_summary_before_close" ,
1797- strcmp (exec1 (db , "SELECT count(*) FROM dolt_conflicts" ), "1" )== 0 );
17981790 check ("failed_cherry_pick_reopen_working_value_before_close" ,
17991791 strcmp (exec1 (db , "SELECT v FROM t WHERE id=1" ), "main" )== 0 );
18001792 check ("failed_cherry_pick_reopen_branch_before_close" ,
0 commit comments