mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-09 14:34:43 +00:00
In AsciiDoc, `subs="attributes,callouts,macros"` options were required to render `include-tagged::` in a code block. With elastic/docs#827, Elasticsearch Reference documentation migrated from AsciiDoc to Asciidoctor. In Asciidoctor, the `subs="attributes,callouts,macros"` options are no longer needed to render `include-tagged::` in a code block. This commit removes those unneeded options. Resolves #41589
37 lines
606 B
Plaintext
37 lines
606 B
Plaintext
[role="xpack"]
|
|
[testenv="basic"]
|
|
[[sql-syntax-describe-table]]
|
|
=== DESCRIBE TABLE
|
|
|
|
.Synopsis
|
|
[source, sql]
|
|
----
|
|
DESCRIBE
|
|
[table identifier | <1>
|
|
[LIKE pattern]] <2>
|
|
----
|
|
|
|
<1> single table identifier or double quoted es multi index
|
|
<2> SQL LIKE pattern
|
|
|
|
or
|
|
|
|
[source, sql]
|
|
----
|
|
DESC
|
|
[table identifier | <1>
|
|
[LIKE pattern]] <2>
|
|
----
|
|
|
|
<1> single table identifier or double quoted es multi index
|
|
<2> SQL LIKE pattern
|
|
|
|
.Description
|
|
|
|
`DESC` and `DESCRIBE` are aliases to <<sql-syntax-show-columns>>.
|
|
|
|
[source, sql]
|
|
----
|
|
include-tagged::{sql-specs}/docs/docs.csv-spec[describeTable]
|
|
----
|