Added missing modifications [#METR-20892].

This commit is contained in:
Alexey Milovidov 2016-04-15 19:07:58 +03:00
parent 0611e45ac9
commit bde00e80cc
3 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ struct AggregateFunctionGroupArrayDataNumeric
/// Сразу будет выделена память на несколько элементов так, чтобы состояние занимало 64 байта.
static constexpr size_t bytes_in_arena = 64 - sizeof(PODArray<T>);
using Array = PODArray<T, bytes_in_arena / sizeof(T), AllocatorWithStackMemory<Allocator<false>, bytes_in_arena>>;
using Array = PODArray<T, bytes_in_arena, AllocatorWithStackMemory<Allocator<false>, bytes_in_arena>>;
Array value;
};

View File

@ -28,7 +28,7 @@ struct AggregateFunctionQuantileExactData
/// Сразу будет выделена память на несколько элементов так, чтобы состояние занимало 64 байта.
static constexpr size_t bytes_in_arena = 64 - sizeof(PODArray<T>);
using Array = PODArray<T, bytes_in_arena / sizeof(T), AllocatorWithStackMemory<Allocator<false>, bytes_in_arena>>;
using Array = PODArray<T, bytes_in_arena, AllocatorWithStackMemory<Allocator<false>, bytes_in_arena>>;
Array array;
};

View File

@ -141,7 +141,7 @@ namespace detail
struct QuantileTimingMedium
{
/// sizeof - 24 байта.
using Array = PODArray<UInt16, 64>;
using Array = PODArray<UInt16, 128>;
mutable Array elems; /// mutable потому что сортировка массива не считается изменением состояния.
QuantileTimingMedium() {}