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

fix string args

This commit is contained in:
mariadb-KristinaPavlova
2025-07-04 15:03:00 +03:00
committed by Leonid Fedorov
parent 7aac943ffe
commit a501ef8721

View File

@ -914,7 +914,7 @@ void CalpontSystemCatalog::getSysData_EC(CalpontSelectExecutionPlan& csep, NJLSy
throw IDBExcept(status);
else{
Message::Args args;
args.add("rowGroup status: " + status);
args.add("rowGroup status: " + std::to_string(status));
throw IDBExcept(ERR_SYSTEM_CATALOG, args);
}
}