mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-30 10:23:41 -04:00
This adds tests, supported types, and a signature image for `to_string` and `to_version`. It also fixes the resolution of functions who's names contain an `_` Finally, it updates the docs for `ceil` to render the image more nicely.
23 lines
614 B
Text
23 lines
614 B
Text
[[esql-ceil]]
|
|
=== `CEIL`
|
|
[.text-center]
|
|
image::esql/functions/signature/ceil.svg[Embedded,opts=inline]
|
|
|
|
Round a number up to the nearest integer.
|
|
|
|
[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]
|
|
|===
|
|
|
|
NOTE: This is a noop for `long` (including unsigned) and `integer`.
|
|
For `double` this picks the the closest `double` value to the integer ala
|
|
{javadoc}/java.base/java/lang/Math.html#ceil(double)[Math.ceil].
|
|
|
|
Supported types:
|
|
|
|
include::types/ceil.asciidoc[]
|