whitespace

This commit is contained in:
Vladimir C 2023-02-13 12:19:31 +01:00 committed by GitHub
parent ea670acb72
commit 89cb55aa1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -1262,8 +1262,8 @@ bool ReadFromMergeTree::requestReadingInOrder(size_t prefix_size, int direction,
if (!direction)
direction = getSortDirection();
/// Disable read-in-order optimization for reverse order with final.
/// Otherwise, it can lead to incorrect final behavior because the implementation may rely on the reading in direct order).
/// Disable read-in-order optimization for reverse order with final.
/// Otherwise, it can lead to incorrect final behavior because the implementation may rely on the reading in direct order).
if (direction != 1 && isFinal(query_info))
return false;

View File

@ -910,8 +910,8 @@ void ReadFromMerge::convertingSourceStream(
bool ReadFromMerge::requestReadingInOrder(InputOrderInfoPtr order_info_)
{
/// Disable read-in-order optimization for reverse order with final.
/// Otherwise, it can lead to incorrect final behavior because the implementation may rely on the reading in direct order).
/// Disable read-in-order optimization for reverse order with final.
/// Otherwise, it can lead to incorrect final behavior because the implementation may rely on the reading in direct order).
if (order_info_->direction != 1 && isFinal(query_info))
return false;