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

Merge pull request #2510 from tntnatbry/MCOL-5021-followup

MCOL-5021 Followup.
This commit is contained in:
Roman Nozdrin
2022-08-19 20:44:56 +03:00
committed by GitHub
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
*/

View File

@ -45,7 +45,7 @@ const uint32_t UINTEMPTYROW = 0xFFFFFFFF;
const uint16_t USMALLINTNULL = 0xFFFE;
const uint16_t USMALLINTEMPTYROW = 0xFFFF;
const uint8_t UTINYINTNULL = 0xFE;
const uint8_t UTINYINTEMPTYROW = 0xFF;
constexpr uint8_t UTINYINTEMPTYROW = 0xFF;
const uint32_t FLOATNULL = 0xFFAAAAAA;
const uint32_t FLOATEMPTYROW = 0xFFAAAAAB;