mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 19:42:00 +00:00
20 lines
666 B
C++
20 lines
666 B
C++
#include <Common/PODArray.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Used for left padding of PODArray when empty
|
|
const char empty_pod_array[empty_pod_array_size]{};
|
|
|
|
template class PODArray<UInt8, 4096, Allocator<false>, 15, 16>;
|
|
template class PODArray<UInt16, 4096, Allocator<false>, 15, 16>;
|
|
template class PODArray<UInt32, 4096, Allocator<false>, 15, 16>;
|
|
template class PODArray<UInt64, 4096, Allocator<false>, 15, 16>;
|
|
|
|
template class PODArray<Int8, 4096, Allocator<false>, 15, 16>;
|
|
template class PODArray<Int16, 4096, Allocator<false>, 15, 16>;
|
|
template class PODArray<Int32, 4096, Allocator<false>, 15, 16>;
|
|
template class PODArray<Int64, 4096, Allocator<false>, 15, 16>;
|
|
|
|
}
|