File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- FROM kelvich/postgres_cluster
1
+ FROM pgproent
2
2
3
3
RUN mkdir /pg/mmts
4
4
COPY ./ /pg/mmts/
Original file line number Diff line number Diff line change @@ -4252,7 +4252,7 @@ static bool MtmTwoPhaseCommit(MtmCurrentTrans* x)
4252
4252
if (!x -> isReplicated && x -> isDistributed && x -> containsDML ) {
4253
4253
MtmGenerateGid (x -> gid );
4254
4254
if (!x -> isTransactionBlock ) {
4255
- BeginTransactionBlock ();
4255
+ BeginTransactionBlock (false );
4256
4256
x -> isTransactionBlock = true;
4257
4257
CommitTransactionCommand ();
4258
4258
StartTransactionCommand ();
Original file line number Diff line number Diff line change @@ -673,7 +673,7 @@ process_remote_commit(StringInfo in)
673
673
} else {
674
674
/* prepare TBLOCK_INPROGRESS state for PrepareTransactionBlock() */
675
675
MTM_LOG2 ("PGLOGICAL_PREPARE commit: gid=%s" , gid );
676
- BeginTransactionBlock ();
676
+ BeginTransactionBlock (false );
677
677
CommitTransactionCommand ();
678
678
StartTransactionCommand ();
679
679
You can’t perform that action at this time.
0 commit comments