1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

MCOL-5021 Followup.

Allow the compiler to inline the call to nextColValue() in column.cpp.
This commit is contained in:
Gagan Goel
2022-08-18 00:36:01 +00:00
parent 4e2d4984cf
commit 6a6fee5969
3 changed files with 116 additions and 63 deletions

View File

@ -935,6 +935,7 @@ const CalpontSystemCatalog::CompressionType AUX_COL_COMPRESSION_TYPE = CalpontSy
const std::string AUX_COL_DATATYPE_STRING = "unsigned-tinyint";
const uint64_t AUX_COL_MINVALUE = MIN_UTINYINT;
const uint64_t AUX_COL_MAXVALUE = MAX_UTINYINT;
constexpr uint8_t AUX_COL_EMPTYVALUE = joblist::UTINYINTEMPTYROW;
/** convenience function to make a TableColName from 3 strings
*/