Return system identification information with appropriate data types

This commit is contained in:
Ian Barwick
2017-08-14 08:50:54 +09:00
parent 50b82f785e
commit b95b3e50e3
3 changed files with 5 additions and 4 deletions

View File

@@ -266,13 +266,13 @@ typedef struct
typedef struct
{
char systemid[MAXLEN];
int timeline;
uint64 system_identifier;
TimeLineID timeline;
XLogRecPtr xlogpos;
} t_system_identification;
#define T_SYSTEM_IDENTIFICATION_INITIALIZER { \
"", \
UNKNOWN_SYSTEM_IDENTIFIER, \
UNKNOWN_TIMELINE_ID, \
InvalidXLogRecPtr \
}