Skip to content

Commit 7225a08

Browse files
author
Alexander Korotkov
committed
Put back numbers in xl_xact_relfilenodes and xl_xact_invals.
1 parent 3011d6d commit 7225a08

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-
int64 nrels; /* number of subtransaction XIDs */
217+
int 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-
int64 nmsgs; /* number of shared inval msgs */
224+
int 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)