mirror of
https://github.com/codership/wsrep-lib.git
synced 2025-07-28 20:02:00 +03:00
s_prepared state for XA transactions
After the XA PREPARE, the XA transactions stay s_prepared until commit/rollback
This commit is contained in:
committed by
Daniele Sciascia
parent
b73df49cff
commit
a9987aa970
@ -47,6 +47,7 @@ namespace wsrep
|
||||
{
|
||||
s_executing,
|
||||
s_preparing,
|
||||
s_prepared,
|
||||
s_certifying,
|
||||
s_committing,
|
||||
s_ordered_commit,
|
||||
@ -269,6 +270,7 @@ namespace wsrep
|
||||
{
|
||||
case wsrep::transaction::s_executing: return "executing";
|
||||
case wsrep::transaction::s_preparing: return "preparing";
|
||||
case wsrep::transaction::s_prepared: return "prepared";
|
||||
case wsrep::transaction::s_certifying: return "certifying";
|
||||
case wsrep::transaction::s_committing: return "committing";
|
||||
case wsrep::transaction::s_ordered_commit: return "ordered_commit";
|
||||
|
Reference in New Issue
Block a user