1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-3741 Change IDB-xxxx error codes to MCS-xxxx

This commit is contained in:
David Hall
2021-08-09 11:33:09 -05:00
parent f4f6cf8b09
commit ecde2719b1
4 changed files with 5 additions and 5 deletions

View File

@ -210,7 +210,7 @@ string IDBErrorInfo::lookupError(const unsigned eid)
msgstr = iter->second;
ostringstream oss;
oss << "IDB-" << setw(4) << setfill('0') << eid << ": " << msgstr;
oss << "MCS-" << setw(4) << setfill('0') << eid << ": " << msgstr;
return oss.str();
}