mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
32 lines
666 B
C++
32 lines
666 B
C++
#pragma once
|
|
|
|
#include <Parsers/IAST.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class ASTInterpolateElement : public IAST
|
|
{
|
|
public:
|
|
String column;
|
|
ASTPtr expr;
|
|
|
|
String getID(char delim) const override { return String("InterpolateElement") + delim + "(column " + column + ")"; }
|
|
|
|
ASTPtr clone() const override
|
|
{
|
|
auto clone = std::make_shared<ASTInterpolateElement>(*this);
|
|
clone->expr = clone->expr->clone();
|
|
clone->children.clear();
|
|
clone->children.push_back(clone->expr);
|
|
return clone;
|
|
}
|
|
|
|
|
|
protected:
|
|
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
|
|
};
|
|
|
|
}
|