32bit Compile fix

This commit is contained in:
proller 2018-06-04 16:32:27 +03:00
parent 5aa6a35161
commit 9907388766

View File

@ -147,7 +147,7 @@ Block MergeTreeBaseBlockInputStream::readFromPart()
}
size_t recommended_rows = estimateNumRows(*task, task->range_reader);
size_t rows_to_read = std::max(1, std::min(max_block_size_rows, recommended_rows));
size_t rows_to_read = std::max(static_cast<decltype(max_block_size_rows)>(1), std::min(max_block_size_rows, recommended_rows));
auto read_result = task->range_reader.read(rows_to_read, task->mark_ranges);