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 - render operator option #4

Closed dimitri-b closed 4 years ago

dimitri-b commented 4 years ago

The following code runs fine, but intellisense redlines the kind keyword.

StormEvents
| top-nested 5 of EventType by count()
| join StormEvents on EventType
| summarize count() by EventType, monthofyear(StartTime)
| render areachart kind = stacked100

image

mattwar commented 4 years ago

This syntax is supported by the engine but only as legacy. The intellisense parser only understands the official syntax which requires the with clause.

Render Operator