LOG10


Returns the log base 10.  The input can be any numeric value, the return value
is always a double.Logs of negative numbers are NaN. Logs of infinites are infinite, as is the log of 0.
```esql
ROW d = 1000.0
| EVAL s = LOG10(d)
```

Supported types:
