Merge pull request #71606 from ClickHouse/backport/24.9/71388

Backport #71388 to 24.9: Fix error Invalid number of rows in Chunk with Variant column
This commit is contained in:
robot-clickhouse-ci-2 2024-11-07 21:18:53 +01:00 committed by GitHub
commit 3531c1a984
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 1 deletions

View File

@ -919,7 +919,7 @@ ColumnPtr ColumnVariant::permute(const Permutation & perm, size_t limit) const
if (hasOnlyNulls())
{
if (limit)
return cloneResized(limit);
return cloneResized(limit ? std::min(size(), limit) : size());
/// If no limit, we can just return current immutable column.
return this->getPtr();

View File

@ -0,0 +1,6 @@
set allow_experimental_variant_type=1;
create table test (x UInt64, d Variant(UInt64)) engine=Memory;
insert into test select number, null from numbers(200000);
select d from test order by d::String limit 32213 format Null;
drop table test;