You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
MCOL-641 Refactored MultiplicationOverflowCheck but it still has flaws.
Introduced fDecimalOverflowCheck to enable/disable overflow check. Add support into a FunctionColumn. Low level scanning crashes on medium sized data sets.
This commit is contained in:
@ -153,8 +153,9 @@ void ColumnCommand::loadData()
|
||||
bool lastBlockReached = false;
|
||||
oidLastLbid = getLastLbid();
|
||||
uint32_t blocksToLoad = 0;
|
||||
BRM::LBID_t* lbids = (BRM::LBID_t*) alloca(8 * sizeof(BRM::LBID_t));
|
||||
uint8_t** blockPtrs = (uint8_t**) alloca(8 * sizeof(uint8_t*));
|
||||
// WIP MCOL-641
|
||||
BRM::LBID_t* lbids = (BRM::LBID_t*) alloca(16 * sizeof(BRM::LBID_t));
|
||||
uint8_t** blockPtrs = (uint8_t**) alloca(16 * sizeof(uint8_t*));
|
||||
int i;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user