Skip to content

Commit 6f43c4d

Browse files
committed
pg_upgrade: suppress creation of delete script
Suppress creation of the pg_upgrade delete script when the new data directory is inside the old data directory. Reported-by: IRC Backpatch-through: 9.3, where delete script tests were added
1 parent 0276bbd commit 6f43c4d

File tree

1 file changed

+24
-6
lines changed

1 file changed

+24
-6
lines changed

src/bin/pg_upgrade/check.c

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -195,9 +195,10 @@ output_completion_banner(char *analyze_script_file_name,
195195
deletion_script_file_name);
196196
else
197197
pg_log(PG_REPORT,
198-
"Could not create a script to delete the old cluster's data\n"
199-
"files because user-defined tablespaces exist in the old cluster\n"
200-
"directory. The old cluster's contents must be deleted manually.\n");
198+
"Could not create a script to delete the old cluster's data files\n"
199+
"because user-defined tablespaces or the new cluster's data directory\n"
200+
"exist in the old cluster directory. The old cluster's contents must\n"
201+
"be deleted manually.\n");
201202
}
202203

203204

@@ -490,18 +491,35 @@ create_script_for_old_cluster_deletion(char **deletion_script_file_name)
490491
{
491492
FILE *script = NULL;
492493
int tblnum;
493-
char old_cluster_pgdata[MAXPGPATH];
494+
char old_cluster_pgdata[MAXPGPATH], new_cluster_pgdata[MAXPGPATH];
494495

495496
*deletion_script_file_name = psprintf("%sdelete_old_cluster.%s",
496497
SCRIPT_PREFIX, SCRIPT_EXT);
497498

499+
strlcpy(old_cluster_pgdata, old_cluster.pgdata, MAXPGPATH);
500+
canonicalize_path(old_cluster_pgdata);
501+
502+
strlcpy(new_cluster_pgdata, new_cluster.pgdata, MAXPGPATH);
503+
canonicalize_path(new_cluster_pgdata);
504+
505+
/* Some people put the new data directory inside the old one. */
506+
if (path_is_prefix_of_path(old_cluster_pgdata, new_cluster_pgdata))
507+
{
508+
pg_log(PG_WARNING,
509+
"\nWARNING: new data directory should not be inside the old data directory, e.g. %s\n", old_cluster_pgdata);
510+
511+
/* Unlink file in case it is left over from a previous run. */
512+
unlink(*deletion_script_file_name);
513+
pg_free(*deletion_script_file_name);
514+
*deletion_script_file_name = NULL;
515+
return;
516+
}
517+
498518
/*
499519
* Some users (oddly) create tablespaces inside the cluster data
500520
* directory. We can't create a proper old cluster delete script in that
501521
* case.
502522
*/
503-
strlcpy(old_cluster_pgdata, old_cluster.pgdata, MAXPGPATH);
504-
canonicalize_path(old_cluster_pgdata);
505523
for (tblnum = 0; tblnum < os_info.num_old_tablespaces; tblnum++)
506524
{
507525
char old_tablespace_dir[MAXPGPATH];

0 commit comments

Comments
 (0)