mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 11:33:46 +00:00
12 lines
223 B
C++
12 lines
223 B
C++
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
#include <unordered_map>
|
||
|
#include <Parsers/IAST.h>
|
||
|
#include <Compression/ICompressionCodec.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
using ColumnCodecs = std::unordered_map<std::string, CompressionCodecPtr>;
|
||
|
}
|