Fix clang build.

This commit is contained in:
Nikolai Kochetov 2019-04-10 16:27:51 +03:00
parent 7240c6f3df
commit b16bce0698
2 changed files with 3 additions and 2 deletions

View File

@ -746,7 +746,8 @@ bool ExpressionActions::hasTotalsInJoin() const
bool has_totals_in_join = false; bool has_totals_in_join = false;
for (const auto & action : actions) for (const auto & action : actions)
{ {
if (action.join && action.join->hasTotals()) if (action.join && action.jo
in->hasTotals())
{ {
has_totals_in_join = true; has_totals_in_join = true;
break; break;

View File

@ -1,7 +1,7 @@
#include <IO/ReadHelpers.h> #include <IO/ReadHelpers.h>
#include <IO/Operators.h> #include <IO/Operators.h>
#include <Processors/Formats/Impl/verbosePrintString.h> #include <Formats/verbosePrintString.h>
#include <Processors/Formats/Impl/CSVRowInputFormat.h> #include <Processors/Formats/Impl/CSVRowInputFormat.h>
#include <Formats/FormatFactory.h> #include <Formats/FormatFactory.h>