diff options
author | Bruce Momjian <bruce@momjian.us> | 2013-12-19 16:10:01 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2013-12-19 16:10:07 -0500 |
commit | 527fdd9df11eb338fdd372d16f62cd067de5204b (patch) | |
tree | d1e354608fd06f148007522f5ee4a59d95429bd9 /src/backend/commands/typecmds.c | |
parent | 73bcb76b77c2e47dd066a1961309cf950cf19412 (diff) | |
download | postgresql-527fdd9df11eb338fdd372d16f62cd067de5204b.tar.gz postgresql-527fdd9df11eb338fdd372d16f62cd067de5204b.zip |
Move pg_upgrade_support global variables to their own include file
Previously their declarations were spread around to avoid accidental
access.
Diffstat (limited to 'src/backend/commands/typecmds.c')
-rw-r--r-- | src/backend/commands/typecmds.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/commands/typecmds.c b/src/backend/commands/typecmds.c index d4a14cabff2..959b3f2252d 100644 --- a/src/backend/commands/typecmds.c +++ b/src/backend/commands/typecmds.c @@ -35,6 +35,7 @@ #include "access/heapam.h" #include "access/htup_details.h" #include "access/xact.h" +#include "catalog/binary_upgrade.h" #include "catalog/catalog.h" #include "catalog/dependency.h" #include "catalog/heap.h" |