microsoft / Kusto-Query-Language

Kusto Query Language is a simple and productive language for querying Big Data.
Apache License 2.0
510 stars 97 forks source link

Operators class should be public #63

Closed davidnx closed 2 years ago

davidnx commented 2 years ago

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

https://github.com/microsoft/Kusto-Query-Language/blob/fb8a70cb4f8e6ef6786b0c97764330c646f976a4/src/Kusto.Language/Operators.cs#L10

https://github.com/microsoft/Kusto-Query-Language/blob/fb8a70cb4f8e6ef6786b0c97764330c646f976a4/src/Kusto.Language/Functions.cs#L10-L13

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.

mattwar commented 2 years ago

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

mattwar commented 2 years ago

Its now public

davidnx commented 2 years ago

Thanks!