FLOOR


Round a number down to the nearest integer.
```esql
ROW a=1.8
| EVAL a=FLOOR(a)
```

This is a noop for long (including unsigned) and integer.
      For double this picks the the closest double value to the integer ala
      Math.floor.
Supported types:
