2019-01-25 11:43:19 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-10-02 07:13:14 +00:00
|
|
|
#include <base/types.h>
|
2019-03-11 14:01:45 +00:00
|
|
|
#include <Parsers/IAST_fwd.h>
|
|
|
|
|
|
|
|
#include <unordered_map>
|
2019-01-25 11:43:19 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
using Aliases = std::unordered_map<String, ASTPtr>;
|
|
|
|
|
|
|
|
}
|