ClickHouse/src/Parsers/ASTIndexDeclaration.h
Alexander Kuzmenkov fef24c81e3 some grammar
2020-12-17 00:44:05 +03:00

28 lines
547 B
C++

#pragma once
#include <Parsers/IAST.h>
namespace DB
{
class ASTFunction;
/** name BY expr TYPE typename(args) GRANULARITY int in create query
*/
class ASTIndexDeclaration : public IAST
{
public:
String name;
IAST * expr;
ASTFunction * type;
UInt64 granularity;
/** Get the text that identifies this element. */
String getID(char) const override { return "Index"; }
ASTPtr clone() const override;
void formatImpl(const FormatSettings & s, FormatState & state, FormatStateStacked frame) const override;
};
}