mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 03:22:14 +00:00
13 lines
170 B
C++
13 lines
170 B
C++
|
#pragma once
|
||
|
|
||
|
#include <memory>
|
||
|
#include <vector>
|
||
|
|
||
|
namespace DB {
|
||
|
|
||
|
class IAST;
|
||
|
using ASTPtr = std::shared_ptr<IAST>;
|
||
|
using ASTs = std::vector<ASTPtr>;
|
||
|
|
||
|
} // namespace DB
|