mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 19:12:03 +00:00
29 lines
571 B
C++
29 lines
571 B
C++
#pragma once
|
|
|
|
#include <Parsers/IAST.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
/** name (subquery)
|
|
*/
|
|
class ASTProjectionDeclaration : public IAST
|
|
{
|
|
public:
|
|
String name;
|
|
IAST * query;
|
|
|
|
/** Get the text that identifies this element. */
|
|
String getID(char) const override { return "Projection"; }
|
|
|
|
ASTPtr clone() const override;
|
|
void formatImpl(const FormatSettings & s, FormatState & state, FormatStateStacked frame) const override;
|
|
|
|
void forEachPointerToChild(std::function<void(void**)> f) override
|
|
{
|
|
f(reinterpret_cast<void **>(&query));
|
|
}
|
|
};
|
|
|
|
}
|