mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 02:21:59 +00:00
build error and style error fix
This commit is contained in:
parent
8ffce5e974
commit
ad8eac4929
@ -43,7 +43,7 @@ void ASTColumnsApplyTransformer::formatImpl(const FormatSettings & settings, For
|
|||||||
parameters->formatImpl(settings, state, frame);
|
parameters->formatImpl(settings, state, frame);
|
||||||
|
|
||||||
if (!column_name_prefix.empty())
|
if (!column_name_prefix.empty())
|
||||||
settings.ostr << ", '" << column_name_prefix << "')";
|
settings.ostr << ", '" << column_name_prefix << "')";
|
||||||
}
|
}
|
||||||
|
|
||||||
void ASTColumnsApplyTransformer::transform(ASTs & nodes) const
|
void ASTColumnsApplyTransformer::transform(ASTs & nodes) const
|
||||||
@ -214,12 +214,12 @@ void ASTColumnsReplaceTransformer::transform(ASTs & nodes) const
|
|||||||
|
|
||||||
if (is_strict && !replace_map.empty())
|
if (is_strict && !replace_map.empty())
|
||||||
{
|
{
|
||||||
String expected_columns = "";
|
String expected_columns;
|
||||||
for (auto it = replace_map.begin(); it != replace_map.end(); ++it)
|
for (auto & elem: replace_map)
|
||||||
{
|
{
|
||||||
if (expected_columns != "")
|
if (!expected_columns.empty())
|
||||||
expected_columns += ", ";
|
expected_columns += ", ";
|
||||||
expected_columns += it->first;
|
expected_columns += elem.first;
|
||||||
}
|
}
|
||||||
throw Exception(
|
throw Exception(
|
||||||
"Columns transformer REPLACE expects following column(s) : " + expected_columns,
|
"Columns transformer REPLACE expects following column(s) : " + expected_columns,
|
||||||
|
@ -1317,7 +1317,7 @@ bool ParserColumnsTransformers::parseImpl(Pos & pos, ASTPtr & node, Expected & e
|
|||||||
if (pos->type != TokenType::ClosingRoundBracket)
|
if (pos->type != TokenType::ClosingRoundBracket)
|
||||||
return false;
|
return false;
|
||||||
++pos;
|
++pos;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto res = std::make_shared<ASTColumnsApplyTransformer>();
|
auto res = std::make_shared<ASTColumnsApplyTransformer>();
|
||||||
res->func_name = getIdentifierName(func_name);
|
res->func_name = getIdentifierName(func_name);
|
||||||
|
Loading…
Reference in New Issue
Block a user