We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 911883e + a980e0b commit 3011d6dCopy full SHA for 3011d6d
src/include/access/xact.h
@@ -214,14 +214,14 @@ typedef struct xl_xact_twophase
214
215
typedef struct xl_xact_relfilenodes
216
{
217
- int nrels; /* number of subtransaction XIDs */
+ int64 nrels; /* number of subtransaction XIDs */
218
RelFileNode xnodes[FLEXIBLE_ARRAY_MEMBER];
219
} xl_xact_relfilenodes;
220
#define MinSizeOfXactRelfilenodes offsetof(xl_xact_relfilenodes, xnodes)
221
222
typedef struct xl_xact_invals
223
224
- int nmsgs; /* number of shared inval msgs */
+ int64 nmsgs; /* number of shared inval msgs */
225
SharedInvalidationMessage msgs[FLEXIBLE_ARRAY_MEMBER];
226
} xl_xact_invals;
227
#define MinSizeOfXactInvals offsetof(xl_xact_invals, msgs)
0 commit comments