@@ -916,7 +916,7 @@ help(const char *progname)
916916printf (_ (" --quote-all-identifiers quote all identifiers, even if not key words\n" ));
917917printf (_ (" --section=SECTION dump named section (pre-data, data, or post-data)\n" ));
918918printf (_ (" --serializable-deferrable wait until the dump can run without anomalies\n" ));
919- printf (_ (" --snapshot=SNAPSHOT use givensynchronous snapshot for the dump\n" ));
919+ printf (_ (" --snapshot=SNAPSHOT use given snapshot for the dump\n" ));
920920printf (_ (" --strict-names require table and/or schema include patterns to\n"
921921" match at least one entity each\n" ));
922922printf (_ (" --use-set-session-authorization\n"
@@ -1455,7 +1455,7 @@ dumpTableData_copy(Archive *fout, DumpOptions *dopt, void *dcontext)
14551455const char * column_list ;
14561456
14571457if (g_verbose )
1458- write_msg (NULL ,"dumping contents of table \"%s\".\" %s\"\n" ,
1458+ write_msg (NULL ,"dumping contents of table \"%s. %s\"\n" ,
14591459tbinfo -> dobj .namespace -> dobj .name ,classname );
14601460
14611461/*
@@ -2852,7 +2852,7 @@ getPolicies(Archive *fout, TableInfo tblinfo[], int numTables)
28522852continue ;
28532853
28542854if (g_verbose )
2855- write_msg (NULL ,"reading row security enabled for table \"%s\".\" %s\"\n" ,
2855+ write_msg (NULL ,"reading row security enabled for table \"%s. %s\"\n" ,
28562856tbinfo -> dobj .namespace -> dobj .name ,
28572857tbinfo -> dobj .name );
28582858
@@ -2883,7 +2883,7 @@ getPolicies(Archive *fout, TableInfo tblinfo[], int numTables)
28832883}
28842884
28852885if (g_verbose )
2886- write_msg (NULL ,"reading policies for table \"%s\".\" %s\"\n" ,
2886+ write_msg (NULL ,"reading policies for table \"%s. %s\"\n" ,
28872887tbinfo -> dobj .namespace -> dobj .name ,
28882888tbinfo -> dobj .name );
28892889
@@ -5327,7 +5327,7 @@ getIndexes(Archive *fout, TableInfo tblinfo[], int numTables)
53275327continue ;
53285328
53295329if (g_verbose )
5330- write_msg (NULL ,"reading indexes for table \"%s\".\" %s\"\n" ,
5330+ write_msg (NULL ,"reading indexes for table \"%s. %s\"\n" ,
53315331tbinfo -> dobj .namespace -> dobj .name ,
53325332tbinfo -> dobj .name );
53335333
@@ -5694,7 +5694,7 @@ getConstraints(Archive *fout, TableInfo tblinfo[], int numTables)
56945694continue ;
56955695
56965696if (g_verbose )
5697- write_msg (NULL ,"reading foreign key constraints for table \"%s\".\" %s\"\n" ,
5697+ write_msg (NULL ,"reading foreign key constraints for table \"%s. %s\"\n" ,
56985698tbinfo -> dobj .namespace -> dobj .name ,
56995699tbinfo -> dobj .name );
57005700
@@ -6033,7 +6033,7 @@ getTriggers(Archive *fout, TableInfo tblinfo[], int numTables)
60336033continue ;
60346034
60356035if (g_verbose )
6036- write_msg (NULL ,"reading triggers for table \"%s\".\" %s\"\n" ,
6036+ write_msg (NULL ,"reading triggers for table \"%s. %s\"\n" ,
60376037tbinfo -> dobj .namespace -> dobj .name ,
60386038tbinfo -> dobj .name );
60396039
@@ -6767,7 +6767,7 @@ getTableAttrs(Archive *fout, DumpOptions *dopt, TableInfo *tblinfo, int numTable
67676767 * the output of an indexscan on pg_attribute_relid_attnum_index.
67686768 */
67696769if (g_verbose )
6770- write_msg (NULL ,"finding the columns and types of table \"%s\".\" %s\"\n" ,
6770+ write_msg (NULL ,"finding the columns and types of table \"%s. %s\"\n" ,
67716771tbinfo -> dobj .namespace -> dobj .name ,
67726772tbinfo -> dobj .name );
67736773
@@ -6980,7 +6980,7 @@ getTableAttrs(Archive *fout, DumpOptions *dopt, TableInfo *tblinfo, int numTable
69806980int numDefaults ;
69816981
69826982if (g_verbose )
6983- write_msg (NULL ,"finding default expressions of table \"%s\".\" %s\"\n" ,
6983+ write_msg (NULL ,"finding default expressions of table \"%s. %s\"\n" ,
69846984tbinfo -> dobj .namespace -> dobj .name ,
69856985tbinfo -> dobj .name );
69866986
@@ -7105,7 +7105,7 @@ getTableAttrs(Archive *fout, DumpOptions *dopt, TableInfo *tblinfo, int numTable
71057105int numConstrs ;
71067106
71077107if (g_verbose )
7108- write_msg (NULL ,"finding check constraints for table \"%s\".\" %s\"\n" ,
7108+ write_msg (NULL ,"finding check constraints for table \"%s. %s\"\n" ,
71097109tbinfo -> dobj .namespace -> dobj .name ,
71107110tbinfo -> dobj .name );
71117111