mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +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
|
|
{
|
|
|
|
using Names = std::vector<std::string>;
|
|
using NameSet = std::unordered_set<std::string>;
|
|
using NameToNameMap = std::unordered_map<std::string, std::string>;
|
|
|
|
}
|