Closed NeilMacMullen closed 2 months ago
m | extend L=round(3.14,1)
gives error...
Function round(number: dynamic, precision: long) is not implemented.
Despite there apparently being an implementation...
[KustoImplementation(Keyword = "Functions.Round")] internal partial class RoundFunction { private static double ImplP(double input, long precision) => Math.Round(input, (int)precision); private static double Impl(double input) => Math.Round(input, 0); }
done
m | extend L=round(3.14,1)
gives error...
Function round(number: dynamic, precision: long) is not implemented.
Despite there apparently being an implementation...