TO_RADIANS

Converts a number in degrees to
radians.The input can be a single- or multi-valued field or an expression. The input
type must be of a numeric type and result is always double.Example:
```esql
ROW deg = [90.0, 180.0, 270.0]
| EVAL rad = TO_RADIANS(deg)
```
