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

Query results grid doesn't support progressive results stream #18252

Open
kburtram opened this issue Oct 16, 2024 · 1 comment
Open

Query results grid doesn't support progressive results stream #18252

kburtram opened this issue Oct 16, 2024 · 1 comment

Comments

@kburtram
Copy link
Member

Steps to Reproduce:

  1. Run a query that takes a long time to run and returns rows progressively, For example, below.
SELECT *
FROM sys.objects AS o1
CROSS JOIN sys.objects AS o2
CROSS JOIN sys.objects AS o3;

Expected: Results are displayed as the arrive, perhaps in batches, but progressively as the query executes.

Actual: The results don't display until the query is done, and it takes a long, long, long time for queries like this to complete relative to other client tools.

@caohai
Copy link
Member

caohai commented Oct 16, 2024

This behavior (same with the old angular implementation) comes from the way we currently sets up query execution events. I should be able to fix this without breaking the old experience.

@Benjin Benjin added this to the November 2024 Release milestone Oct 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants