diff options
author | Bruce Momjian | 1999-06-08 01:32:05 +0000 |
---|---|---|
committer | Bruce Momjian | 1999-06-08 01:32:05 +0000 |
commit | f56483490b9a2ac97b7559ee1b2c9f285fef55bd (patch) | |
tree | 03c527c68842c5895de5be7929fd380a80249100 | |
parent | 505b2ecdf4bcc990bb352fe7619283c0f334a295 (diff) |
Disable pg_upgrade for 6.5.
-rwxr-xr-x | src/bin/pg_dump/pg_upgrade | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bin/pg_dump/pg_upgrade b/src/bin/pg_dump/pg_upgrade index e566a912ba6..6d54f84f558 100755 --- a/src/bin/pg_dump/pg_upgrade +++ b/src/bin/pg_dump/pg_upgrade @@ -2,6 +2,9 @@ # # pg_upgrade: update a database without needing a full dump/reload cycle # CAUTION: read the manual page before trying to use this! +echo "pg_upgrade is disabled in this release because the on-disk structure" 1>&2 +echo "of the tables has changed compared to previous releases." 1>&2 +exit 1 trap "rm -f /tmp/$$" 0 1 2 3 15 |