fix build

This commit is contained in:
CurtizJ 2019-12-22 05:44:04 +03:00
parent 75c5e02ec2
commit d941643416
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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;