소스 검색

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-date_format>>
 * <<esql-date_trunc>>
+* <<esql-is_finite>>
+* <<esql-is_infinite>>
+* <<esql-is_nan>>
 * <<esql-is_null>>
 * <<esql-length>>
+* <<esql-pow>>
 * <<esql-round>>
 * <<esql-starts_with>>
 * <<esql-substring>>
@@ -117,7 +121,7 @@ Returns a boolean than indicates whether its input is `null`.
 [source,esql]
 ----
 FROM employees
-| WHERE is_null(first_name)
+| WHERE IS_NULL(first_name)
 ----
 
 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]
 ----
 FROM employees
-| WHERE NOT is_null(first_name)
+| WHERE NOT IS_NULL(first_name)
 ----
 
 [[esql-length]]