1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

pg_upgrade: check for large object size compatibility

This commit is contained in:
Bruce Momjian
2014-09-10 19:23:36 -04:00
parent 36ad1a87a3
commit e1598a15f4
2 changed files with 28 additions and 0 deletions

View File

@ -115,6 +115,12 @@ extern char *output_files[];
*/
#define MULTIXACT_FORMATCHANGE_CAT_VER 201301231
/*
* large object chunk size added to pg_controldata,
* commit 5f93c37805e7485488480916b4585e098d3cc883
*/
#define LARGE_OBJECT_SIZE_PG_CONTROL_VER 942
/*
* Each relation is represented by a relinfo structure.
*/
@ -203,6 +209,7 @@ typedef struct
uint32 ident;
uint32 index;
uint32 toast;
uint32 large_object;
bool date_is_int;
bool float8_pass_by_value;
bool data_checksum_version;