mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 02:12:21 +00:00
15 lines
227 B
C++
15 lines
227 B
C++
|
#pragma once
|
||
|
|
||
|
#include <Parsers/IAST.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
/// Pull out the WITH statement from the first child of ASTSelectWithUnion query if any.
|
||
|
class ApplyWithGlobalVisitor
|
||
|
{
|
||
|
public:
|
||
|
static void visit(ASTPtr & ast);
|
||
|
};
|
||
|
|
||
|
}
|