1 | #pragma once |
---|---|
2 | |
3 | #include <string> |
4 | #include <unordered_map> |
5 | #include <Parsers/IAST.h> |
6 | #include <Compression/ICompressionCodec.h> |
7 | |
8 | namespace DB |
9 | { |
10 | using ColumnCodecs = std::unordered_map<std::string, CompressionCodecPtr>; |
11 | } |
12 |
1 | #pragma once |
---|---|
2 | |
3 | #include <string> |
4 | #include <unordered_map> |
5 | #include <Parsers/IAST.h> |
6 | #include <Compression/ICompressionCodec.h> |
7 | |
8 | namespace DB |
9 | { |
10 | using ColumnCodecs = std::unordered_map<std::string, CompressionCodecPtr>; |
11 | } |
12 |