microsoft / Kusto-Query-Language

Kusto Query Language is a simple and productive language for querying Big Data.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Intellisense false positive - hash()

dimitri-b opened this issue · comments

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

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

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