Skip to content

Commit 5796da6

Browse files
ES|QL: add include_execution_metadata to the query spec (#5328)
1 parent 9098159 commit 5796da6

File tree

6 files changed

+19
-9
lines changed

6 files changed

+19
-9
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 10 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/esql/async_query/AsyncQueryRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,11 @@ export interface Request extends RequestBase {
106106
*/
107107
tables?: Dictionary<string, Dictionary<string, TableValuesContainer>>
108108
/**
109-
* When set to `true` and performing a cross-cluster query, the response will include an extra `_clusters`
109+
* When set to `true` and performing a cross-cluster/cross-project query, the response will include an extra `_clusters`
110110
* object with information about the clusters that participated in the search along with info such as shards
111111
* count.
112112
* @server_default false
113+
* @aliases include_execution_metadata
113114
*/
114115
include_ccs_metadata?: boolean
115116
/**

specification/esql/query/QueryRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,11 @@ export interface Request extends RequestBase {
105105
*/
106106
tables?: Dictionary<string, Dictionary<string, TableValuesContainer>>
107107
/**
108-
* When set to `true` and performing a cross-cluster query, the response will include an extra `_clusters`
108+
* When set to `true` and performing a cross-cluster/cross-project query, the response will include an extra `_clusters`
109109
* object with information about the clusters that participated in the search along with info such as shards
110110
* count.
111111
* @server_default false
112+
* @aliases include_execution_metadata
112113
*/
113114
include_ccs_metadata?: boolean
114115
}

0 commit comments

Comments
 (0)