@@ -759,7 +759,7 @@ main(int argc, char *argv[])
759
759
{
760
760
if (opts .show_progress && progress_since_last_stderr )
761
761
fprintf (stderr , "\n" );
762
- pg_log_info ("checking heap table \"%s\".\"%s\".\" %s\"" ,
762
+ pg_log_info ("checking heap table \"%s.%s. %s\"" ,
763
763
rel -> datinfo -> datname , rel -> nspname , rel -> relname );
764
764
progress_since_last_stderr = false;
765
765
}
@@ -775,7 +775,7 @@ main(int argc, char *argv[])
775
775
if (opts .show_progress && progress_since_last_stderr )
776
776
fprintf (stderr , "\n" );
777
777
778
- pg_log_info ("checking btree index \"%s\".\"%s\".\" %s\"" ,
778
+ pg_log_info ("checking btree index \"%s.%s. %s\"" ,
779
779
rel -> datinfo -> datname , rel -> nspname , rel -> relname );
780
780
progress_since_last_stderr = false;
781
781
}
@@ -1110,7 +1110,7 @@ verify_btree_slot_handler(PGresult *res, PGconn *conn, void *context)
1110
1110
*/
1111
1111
if (opts .show_progress && progress_since_last_stderr )
1112
1112
fprintf (stderr , "\n" );
1113
- pg_log_warning ("btree index \"%s\".\"%s\".\" %s\": btree checking function returned unexpected number of rows: %d" ,
1113
+ pg_log_warning ("btree index \"%s.%s. %s\": btree checking function returned unexpected number of rows: %d" ,
1114
1114
rel -> datinfo -> datname , rel -> nspname , rel -> relname , ntups );
1115
1115
if (opts .verbose )
1116
1116
pg_log_info ("query was: %s" , rel -> sql );
@@ -1173,7 +1173,7 @@ help(const char *progname)
1173
1173
printf (_ (" --startblock=BLOCK begin checking table(s) at the given block number\n" ));
1174
1174
printf (_ (" --endblock=BLOCK check table(s) only up to the given block number\n" ));
1175
1175
printf (_ ("\nB-tree index checking options:\n" ));
1176
- printf (_ (" --heapallindexed check all heap tuples are found within indexes\n" ));
1176
+ printf (_ (" --heapallindexed check that all heap tuples are found within indexes\n" ));
1177
1177
printf (_ (" --parent-check check index parent/child relationships\n" ));
1178
1178
printf (_ (" --rootdescend search from root page to refind tuples\n" ));
1179
1179
printf (_ ("\nConnection options:\n" ));
@@ -1252,7 +1252,7 @@ progress_report(uint64 relations_total, uint64 relations_checked,
1252
1252
* last call)
1253
1253
*/
1254
1254
fprintf (stderr ,
1255
- _ ("%*s/%s relations (%d%%) %*s/%s pages (%d%%) %*s" ),
1255
+ _ ("%*s/%s relations (%d%%), %*s/%s pages (%d%%) %*s" ),
1256
1256
(int ) strlen (total_rel ),
1257
1257
checked_rel , total_rel , percent_rel ,
1258
1258
(int ) strlen (total_pages ),
@@ -1263,7 +1263,7 @@ progress_report(uint64 relations_total, uint64 relations_checked,
1263
1263
bool truncate = (strlen (datname ) > VERBOSE_DATNAME_LENGTH );
1264
1264
1265
1265
fprintf (stderr ,
1266
- _ ("%*s/%s relations (%d%%) %*s/%s pages (%d%%), (%s%-*.*s)" ),
1266
+ _ ("%*s/%s relations (%d%%), %*s/%s pages (%d%%) (%s%-*.*s)" ),
1267
1267
(int ) strlen (total_rel ),
1268
1268
checked_rel , total_rel , percent_rel ,
1269
1269
(int ) strlen (total_pages ),
@@ -1278,7 +1278,7 @@ progress_report(uint64 relations_total, uint64 relations_checked,
1278
1278
}
1279
1279
else
1280
1280
fprintf (stderr ,
1281
- _ ("%*s/%s relations (%d%%) %*s/%s pages (%d%%)" ),
1281
+ _ ("%*s/%s relations (%d%%), %*s/%s pages (%d%%)" ),
1282
1282
(int ) strlen (total_rel ),
1283
1283
checked_rel , total_rel , percent_rel ,
1284
1284
(int ) strlen (total_pages ),
0 commit comments