浏览代码

Fix function list

Abdon Pijpelink 2 年之前
父节点
当前提交
e7dce054d4
共有 1 个文件被更改,包括 6 次插入2 次删除
  1. 6 2
      docs/reference/esql/esql-functions.asciidoc

+ 6 - 2
docs/reference/esql/esql-functions.asciidoc

@@ -9,8 +9,12 @@ these functions:
 * <<esql-concat>>
 * <<esql-concat>>
 * <<esql-date_format>>
 * <<esql-date_format>>
 * <<esql-date_trunc>>
 * <<esql-date_trunc>>
+* <<esql-is_finite>>
+* <<esql-is_infinite>>
+* <<esql-is_nan>>
 * <<esql-is_null>>
 * <<esql-is_null>>
 * <<esql-length>>
 * <<esql-length>>
+* <<esql-pow>>
 * <<esql-round>>
 * <<esql-round>>
 * <<esql-starts_with>>
 * <<esql-starts_with>>
 * <<esql-substring>>
 * <<esql-substring>>
@@ -117,7 +121,7 @@ Returns a boolean than indicates whether its input is `null`.
 [source,esql]
 [source,esql]
 ----
 ----
 FROM employees
 FROM employees
-| WHERE is_null(first_name)
+| WHERE IS_NULL(first_name)
 ----
 ----
 
 
 Combine this function with `NOT` to filter out any `null` data:
 Combine this function with `NOT` to filter out any `null` data:
@@ -125,7 +129,7 @@ Combine this function with `NOT` to filter out any `null` data:
 [source,esql]
 [source,esql]
 ----
 ----
 FROM employees
 FROM employees
-| WHERE NOT is_null(first_name)
+| WHERE NOT IS_NULL(first_name)
 ----
 ----
 
 
 [[esql-length]]
 [[esql-length]]