Sign in
apache
/
spark
/
v1.6.1
/
.
/
sql
/
hive
/
src
/
test
/
resources
/
golden
/
udf_ceiling-1-69b4ba577d2f0f18befdaa1ee7a858df
blob: 564d0566997d436050a22d40090edb90e8392433 [
file
] [
log
] [
blame
]
ceiling
(
x
)
-
Find
the smallest integer
not
smaller than x
Synonyms
:
ceil
Example
:
>
SELECT ceiling
(-
0.1
)
FROM src LIMIT
1
;
0
>
SELECT ceiling
(
5
)
FROM src LIMIT
1
;
5