Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 0c089d3

Browse files
committed
pg_upgrade: adjust error output to use new database list format
Commit a524f50 added old_11_check_for_sql_identifier_data_type_usage(), but it did not use the clearer database error list format added to the master branch in commit 1634d36. This commit fixes that. Backpatch-through: master
1 parent 5d3500d commit 0c089d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_upgrade/version.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ old_11_check_for_sql_identifier_data_type_usage(ClusterInfo *cluster)
540540
strerror(errno));
541541
if (!db_used)
542542
{
543-
fprintf(script, "Database: %s\n", active_db->db_name);
543+
fprintf(script, "In database: %s\n", active_db->db_name);
544544
db_used = true;
545545
}
546546
fprintf(script, " %s.%s.%s\n",

0 commit comments

Comments
 (0)