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
Describe the bug
The Variant Analysis Results view does not show any results for certain non-standard select statements (for queries without @kind), even though the query has results and a local database run does show them.
Maybe closely related to #2629, or even the same underlying issue
To reproduce
For each of the sample queries below (yes they literally consist only of a select statement), open Quick Query and perform Variant Analysis for them on the top 10 repositories.
✔️ Works
select"first"
✔️ Works
select"first",1
❌ No results
select"first","second"
This list is not exhaustive; there might be more cases.
Expected behavior
The raw results table should always be shown if there are results.
The text was updated successfully, but these errors were encountered:
Thank you for raising this. This is a known issue that the variant analysis results view can fail to render results sometimes. I don't believe it's the same underlying issue as #2629 and it's more to do with the column types rather than results being from or not from the source.
We've got a couple of internal issues for this and we're going to look into making this behaviour better in two ways:
If @kind metadata is given then we want to respect it, so in cases like this you could put @kind table to get it to render the raw results.
It shouldn't be as eager to render results as alerts (i.e. problem queries) when the columns don't actually match the right format
Describe the bug
The Variant Analysis Results view does not show any results for certain non-standard
select
statements (for queries without@kind
), even though the query has results and a local database run does show them.Maybe closely related to #2629, or even the same underlying issue
Version
Extension version
VS Code version
To reproduce
For each of the sample queries below (yes they literally consist only of a
select
statement), open Quick Query and perform Variant Analysis for them on the top 10 repositories.This list is not exhaustive; there might be more cases.
Expected behavior
The raw results table should always be shown if there are results.
The text was updated successfully, but these errors were encountered: