ClickHouse/src/Parsers/ASTCollation.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
347 B
C++
Raw Normal View History

2022-04-14 16:12:31 +00:00
#pragma once
#include <Parsers/IAST.h>
namespace DB
{
class ASTCollation : public IAST
{
public:
ASTPtr collation = nullptr;
String getID(char) const override { return "Collation"; }
ASTPtr clone() const override;
void formatImpl(const FormatSettings & s, FormatState & state, FormatStateStacked frame) const override;
};
}