Skip to content

Commit 3011d6d

Browse files
author
Alexander Korotkov
committed
Merge branch 'PGPROEE9_6-15-64-xid' of git.postgrespro.ru:pgpro-dev/postgrespro into PGPROEE9_6-15-64-xid
2 parents 911883e + a980e0b commit 3011d6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/include/access/xact.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,14 +214,14 @@ typedef struct xl_xact_twophase
214214

215215
typedef struct xl_xact_relfilenodes
216216
{
217-
int nrels; /* number of subtransaction XIDs */
217+
int64 nrels; /* number of subtransaction XIDs */
218218
RelFileNode xnodes[FLEXIBLE_ARRAY_MEMBER];
219219
} xl_xact_relfilenodes;
220220
#define MinSizeOfXactRelfilenodes offsetof(xl_xact_relfilenodes, xnodes)
221221

222222
typedef struct xl_xact_invals
223223
{
224-
int nmsgs; /* number of shared inval msgs */
224+
int64 nmsgs; /* number of shared inval msgs */
225225
SharedInvalidationMessage msgs[FLEXIBLE_ARRAY_MEMBER];
226226
} xl_xact_invals;
227227
#define MinSizeOfXactInvals offsetof(xl_xact_invals, msgs)

0 commit comments

Comments
 (0)