mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
21 lines
309 B
C++
21 lines
309 B
C++
#pragma once
|
|
|
|
#include <DB/Parsers/IAST.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Звёздочка.
|
|
*/
|
|
class ASTAsterisk : public IAST
|
|
{
|
|
public:
|
|
ASTAsterisk() {}
|
|
ASTAsterisk(StringRange range_) : IAST(range_) {}
|
|
String getID() const { return "Asterisk"; }
|
|
ASTPtr clone() const { return new ASTAsterisk(*this); }
|
|
};
|
|
|
|
}
|