2018-11-28 08:20:04 -05:00
|
|
|
[role="xpack"]
|
|
|
|
[testenv="basic"]
|
|
|
|
[[sql-functions-system]]
|
|
|
|
=== System Functions
|
|
|
|
|
|
|
|
These functions return metadata type of information about the system being queried.
|
|
|
|
|
|
|
|
[[sql-functions-system-database]]
|
|
|
|
==== `DATABASE`
|
|
|
|
|
|
|
|
.Synopsis:
|
|
|
|
[source, sql]
|
|
|
|
--------------------------------------------------
|
|
|
|
DATABASE()
|
|
|
|
--------------------------------------------------
|
|
|
|
|
2018-12-21 16:25:54 -05:00
|
|
|
*Input*: _none_
|
2018-11-28 08:20:04 -05:00
|
|
|
|
|
|
|
*Output*: string
|
|
|
|
|
|
|
|
.Description:
|
|
|
|
|
|
|
|
Returns the name of the database being queried. In the case of Elasticsearch SQL, this
|
|
|
|
is the name of the Elasticsearch cluster. This function should always return a non-null
|
|
|
|
value.
|
|
|
|
|
2019-05-31 13:03:41 -04:00
|
|
|
[source, sql]
|
2018-11-28 08:20:04 -05:00
|
|
|
--------------------------------------------------
|
2019-03-25 09:22:59 -04:00
|
|
|
include-tagged::{sql-specs}/docs/docs.csv-spec[database]
|
2018-11-28 08:20:04 -05:00
|
|
|
--------------------------------------------------
|
|
|
|
|
|
|
|
[[sql-functions-system-user]]
|
|
|
|
==== `USER`
|
|
|
|
|
|
|
|
.Synopsis:
|
|
|
|
[source, sql]
|
|
|
|
--------------------------------------------------
|
|
|
|
USER()
|
|
|
|
--------------------------------------------------
|
2018-12-21 16:25:54 -05:00
|
|
|
*Input*: _none_
|
2018-11-28 08:20:04 -05:00
|
|
|
|
|
|
|
*Output*: string
|
|
|
|
|
|
|
|
.Description:
|
|
|
|
|
|
|
|
Returns the username of the authenticated user executing the query. This function can
|
2018-12-21 16:25:54 -05:00
|
|
|
return `null` in case {stack-ov}/elasticsearch-security.html[Security] is disabled.
|
2018-11-28 08:20:04 -05:00
|
|
|
|
2019-05-31 13:03:41 -04:00
|
|
|
[source, sql]
|
2018-11-28 08:20:04 -05:00
|
|
|
--------------------------------------------------
|
2019-03-25 09:22:59 -04:00
|
|
|
include-tagged::{sql-specs}/docs/docs.csv-spec[user]
|
2018-11-28 08:20:04 -05:00
|
|
|
--------------------------------------------------
|