@@ -905,7 +905,7 @@ help(const char *progname)
905905printf (_ (" --quote-all-identifiers quote all identifiers, even if not key words\n" ));
906906printf (_ (" --section=SECTION dump named section (pre-data, data, or post-data)\n" ));
907907printf (_ (" --serializable-deferrable wait until the dump can run without anomalies\n" ));
908- printf (_ (" --snapshot=SNAPSHOT use givensynchronous snapshot for the dump\n" ));
908+ printf (_ (" --snapshot=SNAPSHOT use given snapshot for the dump\n" ));
909909printf (_ (" --use-set-session-authorization\n"
910910" use SET SESSION AUTHORIZATION commands instead of\n"
911911" ALTER OWNER commands to set ownership\n" ));
@@ -1436,7 +1436,7 @@ dumpTableData_copy(Archive *fout, DumpOptions *dopt, void *dcontext)
14361436const char * column_list ;
14371437
14381438if (g_verbose )
1439- write_msg (NULL ,"dumping contents of table \"%s\".\" %s\"\n" ,
1439+ write_msg (NULL ,"dumping contents of table \"%s. %s\"\n" ,
14401440tbinfo -> dobj .namespace -> dobj .name ,classname );
14411441
14421442/*
@@ -2833,7 +2833,7 @@ getPolicies(Archive *fout, TableInfo tblinfo[], int numTables)
28332833continue ;
28342834
28352835if (g_verbose )
2836- write_msg (NULL ,"reading row security enabled for table \"%s\".\" %s\"\n" ,
2836+ write_msg (NULL ,"reading row security enabled for table \"%s. %s\"\n" ,
28372837tbinfo -> dobj .namespace -> dobj .name ,
28382838tbinfo -> dobj .name );
28392839
@@ -2864,7 +2864,7 @@ getPolicies(Archive *fout, TableInfo tblinfo[], int numTables)
28642864}
28652865
28662866if (g_verbose )
2867- write_msg (NULL ,"reading policies for table \"%s\".\" %s\"\n" ,
2867+ write_msg (NULL ,"reading policies for table \"%s. %s\"\n" ,
28682868tbinfo -> dobj .namespace -> dobj .name ,
28692869tbinfo -> dobj .name );
28702870
@@ -5308,7 +5308,7 @@ getIndexes(Archive *fout, TableInfo tblinfo[], int numTables)
53085308continue ;
53095309
53105310if (g_verbose )
5311- write_msg (NULL ,"reading indexes for table \"%s\".\" %s\"\n" ,
5311+ write_msg (NULL ,"reading indexes for table \"%s. %s\"\n" ,
53125312tbinfo -> dobj .namespace -> dobj .name ,
53135313tbinfo -> dobj .name );
53145314
@@ -5675,7 +5675,7 @@ getConstraints(Archive *fout, TableInfo tblinfo[], int numTables)
56755675continue ;
56765676
56775677if (g_verbose )
5678- write_msg (NULL ,"reading foreign key constraints for table \"%s\".\" %s\"\n" ,
5678+ write_msg (NULL ,"reading foreign key constraints for table \"%s. %s\"\n" ,
56795679tbinfo -> dobj .namespace -> dobj .name ,
56805680tbinfo -> dobj .name );
56815681
@@ -6014,7 +6014,7 @@ getTriggers(Archive *fout, TableInfo tblinfo[], int numTables)
60146014continue ;
60156015
60166016if (g_verbose )
6017- write_msg (NULL ,"reading triggers for table \"%s\".\" %s\"\n" ,
6017+ write_msg (NULL ,"reading triggers for table \"%s. %s\"\n" ,
60186018tbinfo -> dobj .namespace -> dobj .name ,
60196019tbinfo -> dobj .name );
60206020
@@ -6748,7 +6748,7 @@ getTableAttrs(Archive *fout, DumpOptions *dopt, TableInfo *tblinfo, int numTable
67486748 * the output of an indexscan on pg_attribute_relid_attnum_index.
67496749 */
67506750if (g_verbose )
6751- write_msg (NULL ,"finding the columns and types of table \"%s\".\" %s\"\n" ,
6751+ write_msg (NULL ,"finding the columns and types of table \"%s. %s\"\n" ,
67526752tbinfo -> dobj .namespace -> dobj .name ,
67536753tbinfo -> dobj .name );
67546754
@@ -6961,7 +6961,7 @@ getTableAttrs(Archive *fout, DumpOptions *dopt, TableInfo *tblinfo, int numTable
69616961int numDefaults ;
69626962
69636963if (g_verbose )
6964- write_msg (NULL ,"finding default expressions of table \"%s\".\" %s\"\n" ,
6964+ write_msg (NULL ,"finding default expressions of table \"%s. %s\"\n" ,
69656965tbinfo -> dobj .namespace -> dobj .name ,
69666966tbinfo -> dobj .name );
69676967
@@ -7086,7 +7086,7 @@ getTableAttrs(Archive *fout, DumpOptions *dopt, TableInfo *tblinfo, int numTable
70867086int numConstrs ;
70877087
70887088if (g_verbose )
7089- write_msg (NULL ,"finding check constraints for table \"%s\".\" %s\"\n" ,
7089+ write_msg (NULL ,"finding check constraints for table \"%s. %s\"\n" ,
70907090tbinfo -> dobj .namespace -> dobj .name ,
70917091tbinfo -> dobj .name );
70927092