Skip to content

Commit a443039

Browse files
committed
Style change
1 parent 886ee39 commit a443039

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/Processors/QueryPlan/JoinStep.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ std::vector<std::pair<String, String>> describeJoinActions(const JoinPtr & join,
3030
std::vector<std::pair<String, String>> description;
3131
const auto & table_join = join->getTableJoin();
3232

33-
auto toLower = [](String & s)
33+
auto to_lower = [](String & s)
3434
{
3535
std::transform(s.begin(), s.end(), s.begin(),
3636
[](unsigned char c) { return std::tolower(c); });
@@ -41,8 +41,8 @@ std::vector<std::pair<String, String>> describeJoinActions(const JoinPtr & join,
4141

4242
if (pretty)
4343
{
44-
toLower(kind);
45-
toLower(strictness);
44+
to_lower(kind);
45+
to_lower(strictness);
4646
}
4747

4848
description.emplace_back("Type", kind);

0 commit comments

Comments
 (0)