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 - hash() #14

Closed dimitri-b closed 4 years ago

dimitri-b commented 4 years ago

In the code below Intellisense marks hash() functions with red underline, but the query works fine.

StormEvents
| extend ComboHash = hash_combine(hash(State), hash(EventType))
| project ComboHash, State, EventType
| take 100

image

mattwar commented 4 years ago

It looks like the signature for hash_combine in intellisense got added with the requirement that arguments were required to be columns only.

mattwar commented 4 years ago

This has been fixed now. Source will sync here eventually.