Skip to content

Commit

Permalink
Merge branch '11.2' into 11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sanja-byelkin committed Nov 19, 2023
2 parents 34272bd + 929532a commit 67a0224
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion sql/handler.cc
Expand Up @@ -2605,7 +2605,7 @@ static void xarecover_do_commit_or_rollback(handlerton *hton,
// Populate xid using the server_id from original transaction
x.set(member->xid, member->server_id);
else
(XID)x= *member->full_xid;
x= *member->full_xid;

rc= xarecover_decide_to_commit(member, ptr_commit_max) ?
hton->commit_by_xid(hton, &x) : hton->rollback_by_xid(hton, &x);
Expand Down
1 change: 1 addition & 0 deletions sql/handler.h
Expand Up @@ -978,6 +978,7 @@ struct Online_alter_cache_list;
struct XA_data: XID
{
Online_alter_cache_list *online_alter_cache= NULL;
XA_data &operator=(const XID &x) { XID::operator=(x); return *this; }
};

/*
Expand Down

0 comments on commit 67a0224

Please sign in to comment.