ClickHouse/src/Parsers/ASTWithElement.h

26 lines
465 B
C++
Raw Normal View History

2020-09-12 17:00:04 +00:00
#pragma once
#include <Parsers/IAST.h>
namespace DB
{
/** subquery in with statement
*/
class ASTWithElement : public IAST
{
public:
String name;
ASTPtr subquery;
/** Get the text that identifies this element. */
String getID(char) const override { return "WithElement"; }
ASTPtr clone() const override;
protected:
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
};
}