From a501ef87218654c30242e63ba857810c5292463b Mon Sep 17 00:00:00 2001 From: mariadb-KristinaPavlova Date: Fri, 4 Jul 2025 15:03:00 +0300 Subject: [PATCH] fix string args --- dbcon/execplan/calpontsystemcatalog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbcon/execplan/calpontsystemcatalog.cpp b/dbcon/execplan/calpontsystemcatalog.cpp index 316ee10ef..118fe1f6e 100644 --- a/dbcon/execplan/calpontsystemcatalog.cpp +++ b/dbcon/execplan/calpontsystemcatalog.cpp @@ -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); } }