You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
fix(logging): MCOL-5789 Add logs on failure. (#3307)
This commit is contained in:
@ -1633,8 +1633,12 @@ void MasterDBRMNode::doRolledBack(ByteStream& msg, ThreadParams* p)
|
||||
#endif
|
||||
sm.rolledback(txnid);
|
||||
}
|
||||
catch (exception&)
|
||||
catch (exception& ex)
|
||||
{
|
||||
ostringstream errStream;
|
||||
errStream << "doRolledBack() failed: " << ex.what();
|
||||
log(errStream.str());
|
||||
|
||||
reply << (uint8_t)ERR_FAILURE;
|
||||
|
||||
try
|
||||
|
Reference in New Issue
Block a user