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 parente43f947 commit345fb82Copy full SHA for 345fb82
contrib/pg_upgrade/info.c
@@ -61,6 +61,9 @@ gen_db_file_maps(DbInfo *old_db, DbInfo *new_db,
61
* 9.0, TOAST relation names always use heap table oids, hence we
62
* cannot check relation names when upgrading from pre-9.0. Clusters
63
* upgraded to 9.0 will get matching TOAST names.
64
+ * If index names don't match primary key constraint names, this will
65
+ * fail because pg_dump dumps constraint names and pg_upgrade checks
66
+ * index names.
67
*/
68
if (strcmp(old_rel->nspname,new_rel->nspname)!=0||
69
((GET_MAJOR_VERSION(old_cluster.major_version) >=900||