We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent6efa28f commitcacdcc5Copy full SHA for cacdcc5
src/backend/access/rmgrdesc/xactdesc.c
@@ -79,7 +79,7 @@ ParseCommitRecord(uint8 info, xl_xact_commit *xlrec, xl_xact_parsed_commit *pars
79
uint8gidlen=xl_twophase->gidlen;
80
81
parsed->twophase_xid=xl_twophase->xid;
82
-data+=MinSizeOfXactTwophase;
+data+=MAXALIGN(MinSizeOfXactTwophase);
83
84
strcpy(parsed->twophase_gid,data);
85
data+=MAXALIGN(gidlen);
@@ -169,7 +169,7 @@ ParseAbortRecord(uint8 info, xl_xact_abort *xlrec, xl_xact_parsed_abort *parsed)
169
170
171
172
173
174
175