removed garbage

This commit is contained in:
Maxim Alexeev 2024-05-06 23:27:28 +03:00
parent 1660a4fe86
commit 3dd04e4e58
2 changed files with 0 additions and 10 deletions

View File

@ -657,7 +657,6 @@ IBlocksStreamPtr GraceHashJoin::getDelayedBlocks()
GraceHashJoin::InMemoryJoinPtr GraceHashJoin::makeInMemoryJoin(const String & bucket_id, size_t reserve_num)
{
LOG_INFO(log, "GreaceHashJoin\n");
return std::make_unique<HashJoin>(table_join, right_sample_block, any_take_last_row, reserve_num, bucket_id);
}

View File

@ -415,15 +415,6 @@ public:
void setMaxJoinedBlockRows(size_t value) { max_joined_block_rows = value; }
TemporaryFileStream* getStreamForCrossJoin()
{
auto streams = tmp_data->getStreams();
assert(streams.size() <= 1);
if (streams.empty())
return nullptr;
return streams[0];
}
private:
friend class NotJoinedHash;