aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Parsers/ASTCollation.h
blob: a735956a90e8e4bd7401e017fedc977aa957140a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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;
};

}