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

Operators class should be public

davidnx opened this issue · comments

Class Operators should be public to be consistent with class Functions that is already public:

internal static class Operators

/// <summary>
/// Well known scalar and special functions.
/// </summary>
public class Functions

This would be useful e.g. in https://github.com/microsofthackathons/baby-kusto-csharp to match Kusto operators to specific implementations, using the OperatorSymbol as the key to match on.

This was an oversight. It was meant to be public. It will be public soon.

Its now public

Thanks!