ytsaurus-ui icon indicating copy to clipboard operation
ytsaurus-ui copied to clipboard

Partial display of elements in query results

Open kaikash opened this issue 1 year ago • 2 comments

Hello,

I've encountered an issue with the display of query results, specifically when using the AGGREGATE_LIST function. The problem arises when executing the following query:

insert into @tmp
SELECT
    AGGREGATE_LIST(`id`)
FROM `//home/mytable`;
commit;
select * from @tmp;

The expected result is a table with two columns: # and column0, where column0 should contain a complete list of id elements aggregated from the mytable table. However, the issue is that column0 only displays a partial list, showing only the first 114 elements, despite there being significantly more elements in the actual array.

Upon initial investigation, this behavior might be related to the field_weight_limit parameter in read_query_result request, which is currently set to 1024.

kaikash avatar Jan 31 '24 14:01 kaikash