ClickHouse/dbms/src/Common/HashTable/HashTableAllocator.h

10 lines
207 B
C++
Raw Normal View History

2014-03-17 02:01:03 +00:00
#pragma once
#include <Common/Allocator.h>
2014-03-17 02:01:03 +00:00
using HashTableAllocator = Allocator<true>;
2014-03-17 02:01:03 +00:00
template <size_t N = 64>
using HashTableAllocatorWithStackMemory = AllocatorWithStackMemory<HashTableAllocator, N>;