mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-25 23:57:20 -04:00
Mark the following features as experimental in the docs: * `AUTO_BUCKET()` * `SHOW FUNCTIONS` * unsigned_long type
35 lines
694 B
Text
35 lines
694 B
Text
[discrete]
|
|
[[esql-show]]
|
|
=== `SHOW`
|
|
|
|
**Syntax**
|
|
|
|
[source,esql]
|
|
----
|
|
SHOW item
|
|
----
|
|
|
|
*Parameters*
|
|
|
|
`item`::
|
|
Can be `INFO` or experimental:[] `FUNCTIONS`.
|
|
|
|
*Description*
|
|
|
|
The `SHOW` source command returns information about the deployment and
|
|
its capabilities:
|
|
|
|
* Use `SHOW INFO` to return the deployment's version, build date and hash.
|
|
* Use experimental:[] `SHOW FUNCTIONS` to return a list of all supported functions and a
|
|
synopsis of each function.
|
|
|
|
*Examples*
|
|
|
|
[source.merge.styled,esql]
|
|
----
|
|
include::{esql-specs}/show.csv-spec[tag=showFunctionsFiltered]
|
|
----
|
|
[%header.monospaced.styled,format=dsv,separator=|]
|
|
|===
|
|
include::{esql-specs}/show.csv-spec[tag=showFunctionsFiltered-result]
|
|
|===
|