You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-07 03:22:57 +03:00
MCOL-5021 Remove hard-coded values for data type, column width
and compression type for the AUX column, and replace them with constants defined in the execplan namespace.
This commit is contained in:
@@ -607,14 +607,13 @@ keepGoing:
|
||||
++iter;
|
||||
}
|
||||
|
||||
// MCOL-5021
|
||||
// TODO compressionType is hardcoded to 2 (SNAPPY)
|
||||
// TODO MCOL-5021 compressionType is hardcoded to 2 (SNAPPY)
|
||||
bytestream << (fStartingColOID + size);
|
||||
bytestream << (uint8_t)datatypes::SystemCatalog::UTINYINT;
|
||||
bytestream << (uint8_t)execplan::AUX_COL_DATATYPE;
|
||||
bytestream << (uint8_t) false;
|
||||
bytestream << (uint32_t)1;
|
||||
bytestream << (uint32_t)execplan::AUX_COL_WIDTH;
|
||||
bytestream << (uint16_t)useDBRoot;
|
||||
bytestream << (uint32_t)2;
|
||||
bytestream << (uint32_t)execplan::AUX_COL_COMPRESSION_TYPE;
|
||||
|
||||
//@Bug 4176. save oids to a log file for cleanup after fail over.
|
||||
std::vector<CalpontSystemCatalog::OID> oidList;
|
||||
|
Reference in New Issue
Block a user