mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-29 18:03:32 -04:00
* Functions starting with A * Functions starting with 'C' * More 'C' functions * Fix tests * Fix missing snippet * DATE_* functions * Apply suggestions from code review Co-authored-by: Bogdan Pintea <pintea@mailbox.org> --------- Co-authored-by: Bogdan Pintea <pintea@mailbox.org>
37 lines
749 B
Text
37 lines
749 B
Text
[discrete]
|
|
[[esql-ceil]]
|
|
=== `CEIL`
|
|
|
|
*Syntax*
|
|
|
|
[.text-center]
|
|
image::esql/functions/signature/ceil.svg[Embedded,opts=inline]
|
|
|
|
*Parameters*
|
|
|
|
`n`::
|
|
Numeric expression. If `null`, the function returns `null`.
|
|
|
|
*Description*
|
|
|
|
Round a number up to the nearest integer.
|
|
|
|
NOTE: This is a noop for `long` (including unsigned) and `integer`.
|
|
For `double` this picks the closest `double` value to the integer
|
|
similar to {javadoc}/java.base/java/lang/Math.html#ceil(double)[Math.ceil].
|
|
|
|
*Supported types*
|
|
|
|
include::types/ceil.asciidoc[]
|
|
|
|
|
|
*Example*
|
|
|
|
[source.merge.styled,esql]
|
|
----
|
|
include::{esql-specs}/math.csv-spec[tag=ceil]
|
|
----
|
|
[%header.monospaced.styled,format=dsv,separator=|]
|
|
|===
|
|
include::{esql-specs}/math.csv-spec[tag=ceil-result]
|
|
|===
|