datatable(a:string, b:string) [
'a', 'b',
'c', 'd',
]
| summarize a by b
This query is obviously incorrect (notice that a is passed after summarize, instead of some aggregation function like take_any(a)). While this query indeed fails (as expected) when submitted to a real Kusto cluster, the Nuget package accepts this as valid and doesn't produce any diagnostics. Kusto Explorer also doesn't show any squiggles or issues for this query until I attempt to execute it.
Example query:
This query is obviously incorrect (notice that
a
is passed after summarize, instead of some aggregation function liketake_any(a)
). While this query indeed fails (as expected) when submitted to a real Kusto cluster, the Nuget package accepts this as valid and doesn't produce any diagnostics. Kusto Explorer also doesn't show any squiggles or issues for this query until I attempt to execute it.Tested with
Microsoft.Azure.Kusto.Language 11.3.1
(I couldn't test with11.3.2
yet due to https://github.com/microsoft/Kusto-Query-Language/issues/124)