mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
28 lines
544 B
C++
28 lines
544 B
C++
#pragma once
|
|
|
|
#include <DB/Parsers/IAST.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Звёздочка.
|
|
*/
|
|
class ASTAsterisk : public IAST
|
|
{
|
|
public:
|
|
ASTAsterisk() = default;
|
|
ASTAsterisk(StringRange range_) : IAST(range_) {}
|
|
String getID() const override { return "Asterisk"; }
|
|
ASTPtr clone() const override { return new ASTAsterisk(*this); }
|
|
String getColumnName() const override { return "*"; }
|
|
|
|
protected:
|
|
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override
|
|
{
|
|
settings.ostr << "*";
|
|
}
|
|
};
|
|
|
|
}
|