mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-10 15:05:33 +00:00
I moved SQL's QA in #34496 to make it easier to run all of SQL tests in one go but forgot to update the docs build. This fixes that.
58 lines
1.8 KiB
Plaintext
58 lines
1.8 KiB
Plaintext
[role="xpack"]
|
|
[testenv="basic"]
|
|
[[xpack-sql]]
|
|
= SQL access
|
|
|
|
:sql-tests: {xes-repo-dir}/../../plugin/sql/qa
|
|
:sql-specs: {sql-tests}/src/main/resources
|
|
:jdbc-tests: {sql-tests}/src/main/java/org/elasticsearch/xpack/sql/qa/jdbc
|
|
:security-tests: {sql-tests}/security/src/test/java/org/elasticsearch/xpack/sql/qa/security
|
|
:es-sql: Elasticsearch SQL
|
|
|
|
[partintro]
|
|
--
|
|
|
|
experimental[]
|
|
|
|
X-Pack includes a SQL feature to execute SQL against Elasticsearch
|
|
indices and return results in tabular format.
|
|
|
|
<<sql-overview, Overview>>::
|
|
Overview of {es-sql} and its features.
|
|
<<sql-getting-started, Getting Started>>::
|
|
Start using SQL right away in {es}.
|
|
<<sql-concepts, Concepts and Terminology>>::
|
|
Language conventions across SQL and {es}.
|
|
<<sql-security,Security>>::
|
|
Securing {es-sql} and {es}.
|
|
<<sql-rest,REST API>>::
|
|
Accepts SQL in a JSON document, executes it, and returns the
|
|
results.
|
|
<<sql-translate,Translate API>>::
|
|
Accepts SQL in a JSON document and translates it into a native
|
|
Elasticsearch query and returns that.
|
|
<<sql-cli,CLI>>::
|
|
Command-line application that connects to {es} to execute
|
|
SQL and print tabular results.
|
|
<<sql-jdbc,JDBC>>::
|
|
A JDBC driver for {es}.
|
|
<<sql-client-apps,Client Applications>>::
|
|
Documentation for configuring various SQL/BI tools with {es-sql}.
|
|
<<sql-spec,SQL Language>>::
|
|
Overview of the {es-sql} language, such as supported data types, commands and
|
|
syntax.
|
|
<<sql-functions,Functions and Operators>>::
|
|
List of functions and operators supported.
|
|
--
|
|
|
|
include::overview.asciidoc[]
|
|
include::getting-started.asciidoc[]
|
|
include::concepts.asciidoc[]
|
|
include::security.asciidoc[]
|
|
include::endpoints/index.asciidoc[]
|
|
include::language/index.asciidoc[]
|
|
include::functions/index.asciidoc[]
|
|
include::appendix/index.asciidoc[]
|
|
|
|
:jdbc-tests!:
|