Skip to content

Commit

Permalink
Add esql version (#2512)
Browse files Browse the repository at this point in the history
Adds a `version` parameter to the ESQL `_query` request endpoint. We'll
do some work to give this a default value in the generated clients soon,
but for 8.14+ this'll be a required parameter.

---------

Co-authored-by: Alexander Spies <[email protected]>
  • Loading branch information
nik9000 and alex-spies authored Apr 17, 2024
1 parent 2e1e7c4 commit 947a1ea
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 1 deletion.
28 changes: 27 additions & 1 deletion output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions specification/esql/_types/Version.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

import { integer } from '@_types/Numeric'
import { Duration } from '@_types/Time'

/**
* The version of the ES|QL language in which the "query" field was written.
*/
export enum Version {
/**
* Run against the first version of ES|QL.
*/
'2024.04.01'
}
5 changes: 5 additions & 0 deletions specification/esql/query/QueryRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import { RequestBase } from '@_types/Base'
import { QueryContainer } from '@_types/query_dsl/abstractions'
import { ScalarValue } from '@_types/common'
import { Version } from '@esql/_types/Version'

/**
* Executes an ES|QL request
Expand Down Expand Up @@ -60,5 +61,9 @@ export interface Request extends RequestBase {
* The ES|QL query API accepts an ES|QL query string in the query parameter, runs it, and returns the results.
*/
query: string
/**
* The version of the ES|QL language in which the "query" field was written.
*/
version: Version
}
}

0 comments on commit 947a1ea

Please sign in to comment.