mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
20 lines
406 B
C++
20 lines
406 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <set>
|
|
#include <unordered_set>
|
|
#include <unordered_map>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using Names = std::vector<std::string>;
|
|
using NameSet = std::unordered_set<std::string>;
|
|
using NameOrderedSet = std::set<std::string>;
|
|
using NameToNameMap = std::unordered_map<std::string, std::string>;
|
|
using NameToNameSetMap = std::unordered_map<std::string, NameSet>;
|
|
|
|
}
|