You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
fix(perf,allocator): test build with reduced CountingAllocator parameter values.
This commit is contained in:
@ -776,11 +776,12 @@ void IdbOrderBy::initialize(const RowGroup& rg)
|
||||
// These two blocks contain structs with memory accounting.
|
||||
fOrderByQueue.reset(new SortingPQ(rowgroup::rgCommonSize, fRm->getAllocator<OrderByRow>()));
|
||||
|
||||
if (fDistinct)
|
||||
{
|
||||
fDistinctMap.reset(new DistinctMap_t(10, Hasher(this, getKeyLength()), Eq(this, getKeyLength()),
|
||||
utils::STLPoolAllocator<rowgroup::Row::Pointer>(fRm)));
|
||||
}
|
||||
// WIP
|
||||
// if (fDistinct)
|
||||
// {
|
||||
// fDistinctMap.reset(new DistinctMap_t(10, Hasher(this, getKeyLength()), Eq(this, getKeyLength()),
|
||||
// utils::STLPoolAllocator<rowgroup::Row::Pointer>(fRm)));
|
||||
// }
|
||||
}
|
||||
|
||||
bool IdbOrderBy::getData(RGData& data)
|
||||
|
Reference in New Issue
Block a user