aboutsummaryrefslogtreecommitdiff
path: root/sql/hive/src/test/resources/golden/udf_ceil-1-f410065d893a263f375fcf74072877bb
blob: 7d608c5ebd2a3a3afc32c00835f5da63a625cbb5 (plain) (blame)
1
2
3
4
5
6
7
ceil(x) - Find the smallest integer not smaller than x
Synonyms: ceiling
Example:
  > SELECT ceil(-0.1) FROM src LIMIT 1;
  0
  > SELECT ceil(5) FROM src LIMIT 1;
  5