@@ -1400,7 +1400,8 @@ dumpTableData_copy(Archive *fout, void *dcontext)
14001400const char * column_list ;
14011401
14021402if (g_verbose )
1403- write_msg (NULL ,"dumping contents of table %s\n" ,classname );
1403+ write_msg (NULL ,"dumping contents of table \"%s\".\"%s\"\n" ,
1404+ tbinfo -> dobj .namespace -> dobj .name ,classname );
14041405
14051406/*
14061407 * Make sure we are in proper schema. We will qualify the table name
@@ -5019,7 +5020,8 @@ getIndexes(Archive *fout, TableInfo tblinfo[], int numTables)
50195020continue ;
50205021
50215022if (g_verbose )
5022- write_msg (NULL ,"reading indexes for table \"%s\"\n" ,
5023+ write_msg (NULL ,"reading indexes for table \"%s\".\"%s\"\n" ,
5024+ tbinfo -> dobj .namespace -> dobj .name ,
50235025tbinfo -> dobj .name );
50245026
50255027/* Make sure we are in proper schema so indexdef is right */
@@ -5385,7 +5387,8 @@ getConstraints(Archive *fout, TableInfo tblinfo[], int numTables)
53855387continue ;
53865388
53875389if (g_verbose )
5388- write_msg (NULL ,"reading foreign key constraints for table \"%s\"\n" ,
5390+ write_msg (NULL ,"reading foreign key constraints for table \"%s\".\"%s\"\n" ,
5391+ tbinfo -> dobj .namespace -> dobj .name ,
53895392tbinfo -> dobj .name );
53905393
53915394/*
@@ -5723,7 +5726,8 @@ getTriggers(Archive *fout, TableInfo tblinfo[], int numTables)
57235726continue ;
57245727
57255728if (g_verbose )
5726- write_msg (NULL ,"reading triggers for table \"%s\"\n" ,
5729+ write_msg (NULL ,"reading triggers for table \"%s\".\"%s\"\n" ,
5730+ tbinfo -> dobj .namespace -> dobj .name ,
57275731tbinfo -> dobj .name );
57285732
57295733/*
@@ -6336,8 +6340,9 @@ getTableAttrs(Archive *fout, TableInfo *tblinfo, int numTables)
63366340 * the output of an indexscan on pg_attribute_relid_attnum_index.
63376341 */
63386342if (g_verbose )
6339- write_msg (NULL ,"finding the columns and types of table \"%s\"\n" ,
6340- tbinfo -> dobj .name );
6343+ write_msg (NULL ,"finding the columns and types of table \"%s\".\"%s\"\n" ,
6344+ tbinfo -> dobj .namespace -> dobj .name ,
6345+ tbinfo -> dobj .name );
63416346
63426347resetPQExpBuffer (q );
63436348
@@ -6548,8 +6553,9 @@ getTableAttrs(Archive *fout, TableInfo *tblinfo, int numTables)
65486553int numDefaults ;
65496554
65506555if (g_verbose )
6551- write_msg (NULL ,"finding default expressions of table \"%s\"\n" ,
6552- tbinfo -> dobj .name );
6556+ write_msg (NULL ,"finding default expressions of table \"%s\".\"%s\"\n" ,
6557+ tbinfo -> dobj .namespace -> dobj .name ,
6558+ tbinfo -> dobj .name );
65536559
65546560resetPQExpBuffer (q );
65556561if (fout -> remoteVersion >=70300 )
@@ -6672,7 +6678,8 @@ getTableAttrs(Archive *fout, TableInfo *tblinfo, int numTables)
66726678int numConstrs ;
66736679
66746680if (g_verbose )
6675- write_msg (NULL ,"finding check constraints for table \"%s\"\n" ,
6681+ write_msg (NULL ,"finding check constraints for table \"%s\".\"%s\"\n" ,
6682+ tbinfo -> dobj .namespace -> dobj .name ,
66766683tbinfo -> dobj .name );
66776684
66786685resetPQExpBuffer (q );