mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 04:22:03 +00:00
17 lines
453 B
C++
17 lines
453 B
C++
#include <Columns/Collator.h>
|
|
#include <Parsers/ASTInterpolateElement.h>
|
|
#include <Common/SipHash.h>
|
|
#include <IO/Operators.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void ASTInterpolateElement::formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const
|
|
{
|
|
settings.ostr << column << (settings.hilite ? hilite_keyword : "") << " AS " << (settings.hilite ? hilite_none : "");
|
|
expr->formatImpl(settings, state, frame);
|
|
}
|
|
|
|
}
|