diff options
author | Bruce Momjian <bruce@momjian.us> | 2014-08-07 14:56:13 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2014-08-07 14:56:13 -0400 |
commit | f445b368d357332fb8392384ee4d75f21f07c5bb (patch) | |
tree | a6fce5ef4e2d6636fac9a982eecc2000a05fcf28 /contrib/pg_upgrade/pg_upgrade.h | |
parent | dc431f41672611d5575e330209784adad73b4f0d (diff) |
pg_upgrade: prevent oid conflicts with new-cluster TOAST tables
Previously, TOAST tables only required in the new cluster could cause
oid conflicts if they were auto-numbered and a later conflicting oid had
to be assigned.
Backpatch through 9.3
Diffstat (limited to 'contrib/pg_upgrade/pg_upgrade.h')
-rw-r--r-- | contrib/pg_upgrade/pg_upgrade.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/pg_upgrade/pg_upgrade.h b/contrib/pg_upgrade/pg_upgrade.h index 0410b02293d..5619dc2c8de 100644 --- a/contrib/pg_upgrade/pg_upgrade.h +++ b/contrib/pg_upgrade/pg_upgrade.h @@ -338,6 +338,7 @@ void disable_old_cluster(void); /* dump.c */ void generate_old_dump(void); +void optionally_create_toast_tables(void); /* exec.c */ |