File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ typedef struct xl_xact_xinfo
191
191
* four so following records don't have to care about alignment. Commit
192
192
* records can be large, so copying large portions isn't attractive.
193
193
*/
194
- uint32 xinfo ;
194
+ uint64 xinfo ;
195
195
} xl_xact_xinfo ;
196
196
197
197
typedef struct xl_xact_dbinfo
@@ -209,14 +209,14 @@ typedef struct xl_xact_subxacts
209
209
210
210
typedef struct xl_xact_relfilenodes
211
211
{
212
- int nrels ; /* number of subtransaction XIDs */
212
+ int64 nrels ; /* number of subtransaction XIDs */
213
213
RelFileNode xnodes [FLEXIBLE_ARRAY_MEMBER ];
214
214
} xl_xact_relfilenodes ;
215
215
#define MinSizeOfXactRelfilenodes offsetof(xl_xact_relfilenodes, xnodes)
216
216
217
217
typedef struct xl_xact_invals
218
218
{
219
- int nmsgs ; /* number of shared inval msgs */
219
+ int64 nmsgs ; /* number of shared inval msgs */
220
220
SharedInvalidationMessage msgs [FLEXIBLE_ARRAY_MEMBER ];
221
221
} xl_xact_invals ;
222
222
#define MinSizeOfXactInvals offsetof(xl_xact_invals, msgs)
You can’t perform that action at this time.
0 commit comments