mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
10 lines
210 B
C++
10 lines
210 B
C++
#pragma once
|
|
|
|
#include <DB/Common/Allocator.h>
|
|
|
|
|
|
using HashTableAllocator = Allocator<true>;
|
|
|
|
template <size_t N = 64>
|
|
using HashTableAllocatorWithStackMemory = AllocatorWithStackMemory<HashTableAllocator, N>;
|