microsoft / Kusto-Query-Language

Kusto Query Language is a simple and productive language for querying Big Data.
Apache License 2.0
511 stars 97 forks source link

Intellisense - false positive for mv-expand itemindex #16

Closed dimitri-b closed 4 years ago

dimitri-b commented 4 years ago

Intellisense redlines itemindex column name downstream if it is separated by whitespace from the expression at definition, see screenshots.

image

datatable(BoxID:int, Fruit:string) [42, 'Apple,Orange,Banana']
| mv-expand with_itemindex = Index Content = split(Fruit,',')
| project BoxID, Content, Index
mattwar commented 4 years ago

Thanks for the nice repro. I've got this fixed now. It'll show up here sometime today.