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