diff options
Diffstat (limited to 'src/include/access/xact.h')
-rw-r--r-- | src/include/access/xact.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/include/access/xact.h b/src/include/access/xact.h index 6d4439f0524..fb64d7413a2 100644 --- a/src/include/access/xact.h +++ b/src/include/access/xact.h @@ -283,7 +283,13 @@ typedef struct xl_xact_stats_item { int kind; Oid dboid; - Oid objoid; + + /* + * This stores the value of PgStat_HashKey.objid as two uint32 as all the + * fields of xl_xact_xinfo should be multiples of size(int). + */ + uint32 objid_lo; + uint32 objid_hi; } xl_xact_stats_item; typedef struct xl_xact_stats_items |