vlsi / mat-calcite-plugin

Heap query plugin for Eclipse Memory Analyzer
Apache License 2.0
154 stars 24 forks source link

Part of the query remains highlighted as error even after error is fixed and query is successfully executed #36

Open Lerm opened 10 months ago

Lerm commented 10 months ago

Enter following query and try to execute it:

select b.a
from unnest(array[1,2,3]) b

The '.a' element will be highlighted as erroneous. Now, add '(a)' to the end of the query:

select b.a
from unnest(array[1,2,3]) b(a)

... and execute the query again. The query is now executed, but the '.a' part remains highlighted as error.