Skip to content

Commit

Permalink
Fix build due to ClickHouse/ClickHouse#64818
Browse files Browse the repository at this point in the history
  • Loading branch information
baibaichen committed Jul 3, 2024
1 parent 0d026a9 commit b5f6276
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 1 addition & 3 deletions cpp-ch/local-engine/Join/StorageJoinFromReadBuffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,15 @@
* limitations under the License.
*/
#include "StorageJoinFromReadBuffer.h"
#include <algorithm>

#include <DataTypes/DataTypeNullable.h>
#include <Interpreters/Context.h>
#include <Interpreters/HashJoin.h>
#include <Interpreters/HashJoin/HashJoin.h>
#include <Interpreters/TableJoin.h>
#include <QueryPipeline/ProfileInfo.h>
#include <Storages/IO/NativeReader.h>
#include <Common/Exception.h>

#include <Poco/Logger.h>
#include <Common/logger_useful.h>

namespace DB
Expand Down
2 changes: 1 addition & 1 deletion cpp-ch/local-engine/Parser/JoinRelParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include <Interpreters/CollectJoinOnKeysVisitor.h>
#include <Interpreters/FullSortingMergeJoin.h>
#include <Interpreters/GraceHashJoin.h>
#include <Interpreters/HashJoin.h>
#include <Interpreters/HashJoin/HashJoin.h>
#include <Interpreters/TableJoin.h>
#include <Join/BroadCastJoinBuilder.h>
#include <Join/StorageJoinFromReadBuffer.h>
Expand Down
2 changes: 1 addition & 1 deletion cpp-ch/local-engine/tests/benchmark_local_engine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <Compression/CompressedReadBuffer.h>
#include <Functions/FunctionFactory.h>
#include <Interpreters/Context.h>
#include <Interpreters/HashJoin.h>
#include <Interpreters/HashJoin/HashJoin.h>
#include <Interpreters/TableJoin.h>
#include <Interpreters/TreeRewriter.h>
#include <Parser/CHColumnToSparkRow.h>
Expand Down
2 changes: 1 addition & 1 deletion cpp-ch/local-engine/tests/gtest_ch_join.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include <Common/DebugUtils.h>
#include <Common/MergeTreeTool.h>

#include <Interpreters/HashJoin.h>
#include <Interpreters/HashJoin/HashJoin.h>
#include <Interpreters/TableJoin.h>
#include <substrait/plan.pb.h>

Expand Down
2 changes: 2 additions & 0 deletions cpp-ch/local-engine/tests/gtest_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ TEST(LocalExecutor, StorageFileSink)
metadata.setColumns(ColumnsDescription::fromNamesAndTypes({{"name", STRING()}, {"value", UINT()}}));
StorageMetadataPtr metadata_ptr = std::make_shared<StorageInMemoryMetadata>(metadata);

/*
auto sink = createFilelinkSink(
metadata_ptr,
"test_table",
Expand All @@ -150,4 +151,5 @@ TEST(LocalExecutor, StorageFileSink)
sink->consume(testChunk());
sink->onFinish();
*/
}

0 comments on commit b5f6276

Please sign in to comment.