Web console doesn't display all columns
Closed this issue · 1 comments
bziobrowski commented
When scrolling down on a large result set, ui sometimes doesn't show values for all columns .
Run :
CREATE TABLE uitest (
id SYMBOL capacity 256 CACHE,
linkedId SYMBOL capacity 256 CACHE,
description STRING,
other STRING,
timestamp TIMESTAMP,
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.
bluestreak01 commented
this issue is fixed