blob: 19716414581191f1455a8a6a7348bd7a44649605 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include <Parsers/ASTCollation.h>
namespace DB
{
ASTPtr ASTCollation::clone() const
{
auto res = std::make_shared<ASTCollation>(*this);
res->collation = collation->clone();
return res;
}
void ASTCollation::formatImpl(const FormatSettings &s, FormatState &state, FormatStateStacked frame) const
{
if (collation)
{
collation->formatImpl(s, state, frame);
}
}
}
|