mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
17 lines
278 B
C++
17 lines
278 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <unordered_set>
|
|
#include <unordered_map>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
typedef std::vector<std::string> Names;
|
|
typedef std::unordered_set<std::string> NameSet;
|
|
typedef std::unordered_map<std::string, std::string> NameToNameMap;
|
|
|
|
}
|