You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When scrolling down on a large result set, ui sometimes doesn't show values for all columns .
Run :
CREATETABLEuitest (
id SYMBOL capacity 256 CACHE,
linkedId SYMBOL capacity 256 CACHE,
description STRING,
other STRING,
timestampTIMESTAMP,
whenEndMs LONG
) timestamp (timestamp) PARTITION BY DAY;
insert into uitest
select'id'|| (x%100),
'linked-generated-id'|| (x%300),
rnd_str(200, 500,0),
rnd_str(20,50,0),
x::timestamp,
rnd_long()
from long_sequence(9000);
selecT*from uitest;
then scroll down to the bottom, scroll to the right to see last columns and then scroll up a few screens.
The last few columns won't have any data displayed even though it was sent from the backend.
If you then scroll to the left and back to right, data will appear.
The text was updated successfully, but these errors were encountered:
When scrolling down on a large result set, ui sometimes doesn't show values for all columns .
Run :
then scroll down to the bottom, scroll to the right to see last columns and then scroll up a few screens.
The last few columns won't have any data displayed even though it was sent from the backend.
If you then scroll to the left and back to right, data will appear.
The text was updated successfully, but these errors were encountered: