ClickHouse/src/Common/PODArray.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
921 B
C++
Raw Normal View History

2018-12-24 14:26:38 +00:00
#include <Common/PODArray.h>
namespace DB
{
2020-05-25 22:06:02 +00:00
2018-12-24 14:26:38 +00:00
/// Used for left padding of PODArray when empty
2020-05-25 22:06:02 +00:00
const char empty_pod_array[empty_pod_array_size]{};
2018-12-24 14:26:38 +00:00
template class PODArray<UInt8, 4096, Allocator<false>, PADDING_FOR_SIMD - 1, PADDING_FOR_SIMD>;
template class PODArray<UInt16, 4096, Allocator<false>, PADDING_FOR_SIMD - 1, PADDING_FOR_SIMD>;
template class PODArray<UInt32, 4096, Allocator<false>, PADDING_FOR_SIMD - 1, PADDING_FOR_SIMD>;
template class PODArray<UInt64, 4096, Allocator<false>, PADDING_FOR_SIMD - 1, PADDING_FOR_SIMD>;
2021-02-11 21:54:50 +00:00
template class PODArray<Int8, 4096, Allocator<false>, PADDING_FOR_SIMD - 1, PADDING_FOR_SIMD>;
template class PODArray<Int16, 4096, Allocator<false>, PADDING_FOR_SIMD - 1, PADDING_FOR_SIMD>;
template class PODArray<Int32, 4096, Allocator<false>, PADDING_FOR_SIMD - 1, PADDING_FOR_SIMD>;
template class PODArray<Int64, 4096, Allocator<false>, PADDING_FOR_SIMD - 1, PADDING_FOR_SIMD>;
2018-12-24 14:26:38 +00:00
}