| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include <Core/Types.h> |
| 4 | #include <Parsers/IAST_fwd.h> |
| 5 | |
| 6 | #include <unordered_map> |
| 7 | |
| 8 | namespace DB |
| 9 | { |
| 10 | |
| 11 | using Aliases = std::unordered_map<String, ASTPtr>; |
| 12 | |
| 13 | } |
| 14 |
| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include <Core/Types.h> |
| 4 | #include <Parsers/IAST_fwd.h> |
| 5 | |
| 6 | #include <unordered_map> |
| 7 | |
| 8 | namespace DB |
| 9 | { |
| 10 | |
| 11 | using Aliases = std::unordered_map<String, ASTPtr>; |
| 12 | |
| 13 | } |
| 14 |