Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Web console doesn't display all columns #121

Closed
bziobrowski opened this issue Apr 6, 2023 · 1 comment
Closed

Web console doesn't display all columns #121

bziobrowski opened this issue Apr 6, 2023 · 1 comment

Comments

@bziobrowski
Copy link
Contributor

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

@bluestreak01
Copy link
Member

this issue is fixed

QuestDB.Console.Mozilla.Firefox.2023-07-06.10-25-29.mp4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants