aboutsummaryrefslogtreecommitdiff
path: root/sql/hive/src/test/resources/golden/udf_floor-1-497a1ddbcf738aead319fde4f90f5248
blob: ab6951202eb2a2c440f2de7afadab08458278615 (plain) (blame)
1
2
3
4
5
6
floor(x) - Find the largest integer not greater than x
Example:
  > SELECT floor(-0.1) FROM src LIMIT 1;
  -1
  > SELECT floor(5) FROM src LIMIT 1;
  5