ClickHouse/src/Interpreters/ApplyWithGlobalVisitor.h

15 lines
227 B
C++
Raw Normal View History

2020-09-29 16:32:41 +00:00
#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);
};
}