@@ -484,7 +484,7 @@ func TestPgCast(t *testing.T) {
484484 Assertions : []ScriptTestAssertion {
485485 {
486486 Query : `SELECT COUNT(*) FROM "pg_catalog"."pg_cast";` ,
487- Expected : []sql.Row {{117 }},
487+ Expected : []sql.Row {{118 }},
488488 },
489489 { // Different cases and quoted, so it fails
490490 Query : `SELECT * FROM "PG_catalog"."pg_cast";` ,
@@ -496,7 +496,7 @@ func TestPgCast(t *testing.T) {
496496 },
497497 { // Different cases but non-quoted, so it works
498498 Query : "SELECT COUNT(*) FROM PG_catalog.pg_CAST ORDER BY oid;" ,
499- Expected : []sql.Row {{117 }},
499+ Expected : []sql.Row {{118 }},
500500 },
501501 },
502502 },
@@ -5082,7 +5082,7 @@ ORDER BY 1;`,
50825082 {
50835083 // This is to make sure a full range scan works (we don't support a full range scan on the index yet)
50845084 Query : `SELECT relname from pg_catalog.pg_class order by oid limit 1;` ,
5085- Expected : []sql.Row {sql. Row {"pg_publication_namespace" }},
5085+ Expected : []sql.Row {{"pg_publication_namespace" }},
50865086 },
50875087 {
50885088 Query : `EXPLAIN SELECT c.oid
@@ -6045,9 +6045,9 @@ func TestSystemTablesInPgcatalog(t *testing.T) {
60456045 {245736992 , "dolt_conflicts" , 2200 , "r" },
60466046 {1932298159 , "dolt_constraint_violations" , 2200 , "r" },
60476047 {2357712556 , "dolt_diff" , 2200 , "r" },
6048- sql. Row {101228732 , "dolt_diff_commit_hash_key" , 2200 , "i" },
6048+ {101228732 , "dolt_diff_commit_hash_key" , 2200 , "i" },
60496049 {3491847678 , "dolt_log" , 2200 , "r" },
6050- sql. Row {2292720014 , "dolt_log_commit_hash_key" , 2200 , "i" },
6050+ {2292720014 , "dolt_log_commit_hash_key" , 2200 , "i" },
60516051 {604995978 , "dolt_merge_status" , 2200 , "r" },
60526052 {887648921 , "dolt_remote_branches" , 2200 , "r" },
60536053 {1471391189 , "dolt_remote_branches_dolt_branches_name_idx_key" , 2200 , "i" },
0 commit comments