1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

add transaction ID in error msg

This commit is contained in:
mariadb-KristinaPavlova
2025-07-01 13:42:31 +03:00
committed by Leonid Fedorov
parent a1a017a475
commit bf3db183c7
2 changed files with 4 additions and 1 deletions

View File

@ -425,7 +425,8 @@ DropTableProcessor::DDLResult DropTableProcessor::processPackageInternal(ddlpack
<< endl;
Message::Args args;
Message message(9);
args.add("Error in dropping table from systables.");
args.add(fTxnid.id);
args.add(" Error in dropping table from systables.");
args.add(errorMsg);
message.format(args);
result.result = (ResultCode)rc;