mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 17:12:03 +00:00
Merge pull request #58318 from ClickHouse/fix-fuzzer-sparse
Fixed logical error in CheckSortedTransform
This commit is contained in:
commit
ef5837a008
@ -52,6 +52,11 @@ void CheckSortedTransform::transform(Chunk & chunk)
|
||||
}
|
||||
};
|
||||
|
||||
/// ColumnVector tries to cast the rhs column to the same type (ColumnVector) in compareAt method.
|
||||
/// And it doesn't care about the possible incompatibilities in data types
|
||||
/// (for example in case when the right column is ColumnSparse)
|
||||
convertToFullIfSparse(chunk);
|
||||
|
||||
const auto & chunk_columns = chunk.getColumns();
|
||||
|
||||
++rows_read;
|
||||
|
Loading…
Reference in New Issue
Block a user