/src/duckdb/src/storage/compression/empty_validity.cpp
Line | Count | Source |
1 | | #include "duckdb/function/compression/compression.hpp" |
2 | | #include "duckdb/storage/compression/empty_validity.hpp" |
3 | | |
4 | | namespace duckdb { |
5 | | |
6 | 17.8k | CompressionFunction EmptyValidityCompressionFun::GetFunction(PhysicalType type) { |
7 | 17.8k | return EmptyValidityCompression::CreateFunction(); |
8 | 17.8k | } |
9 | | |
10 | 338k | bool EmptyValidityCompressionFun::TypeIsSupported(const PhysicalType physical_type) { |
11 | 338k | return physical_type == PhysicalType::BIT; |
12 | 338k | } |
13 | | |
14 | | } // namespace duckdb |