mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
fix build
This commit is contained in:
parent
75c5e02ec2
commit
d941643416
@ -1417,7 +1417,7 @@ BlockInputStreamPtr Join::createStreamWithNonJoinedRows(const Block & result_sam
|
||||
}
|
||||
|
||||
|
||||
bool Join::hasStreamWithNonJoinedRows()
|
||||
bool Join::hasStreamWithNonJoinedRows() const
|
||||
{
|
||||
if (table_join->strictness() == ASTTableJoin::Strictness::Asof ||
|
||||
table_join->strictness() == ASTTableJoin::Strictness::Semi)
|
||||
|
@ -179,7 +179,7 @@ public:
|
||||
* left_sample_block is passed without account of 'use_nulls' setting (columns will be converted to Nullable inside).
|
||||
*/
|
||||
BlockInputStreamPtr createStreamWithNonJoinedRows(const Block & result_sample_block, UInt64 max_block_size) const override;
|
||||
bool hasStreamWithNonJoinedRows();
|
||||
bool hasStreamWithNonJoinedRows() const override;
|
||||
|
||||
/// Number of keys in all built JOIN maps.
|
||||
size_t getTotalRowCount() const final;
|
||||
|
Loading…
Reference in New Issue
Block a user