Skip to content

Web console doesn't display all columns  #121

Closed
@bziobrowski

Description

@bziobrowski

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.

missing_col

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions