We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parente66e439 commit56a9adcCopy full SHA for 56a9adc
contrib/pg_upgrade/function.c
@@ -27,8 +27,8 @@ install_support_functions(void)
27
28
for (dbnum=0;dbnum<new_cluster.dbarr.ndbs;dbnum++)
29
{
30
-DbInfo*newdb=&new_cluster.dbarr.dbs[dbnum];
31
-PGconn*conn=connectToServer(&new_cluster,newdb->db_name);
+DbInfo*new_db=&new_cluster.dbarr.dbs[dbnum];
+PGconn*conn=connectToServer(&new_cluster,new_db->db_name);
32
33
/* suppress NOTICE of dropped objects */
34
PQclear(executeQueryOrDie(conn,
@@ -98,8 +98,8 @@ uninstall_support_functions(void)
98
99
100
101
102
103
104
105