mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
18 lines
345 B
C++
18 lines
345 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>;
|
|
using NameToNameSetMap = std::unordered_map<std::string, NameSet>;
|
|
|
|
}
|