File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
specification/esql/_types Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -27,14 +27,14 @@ import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
2727export class EsqlResult {
2828 took ?: DurationValue < UnitMillis >
2929 is_partial ?: boolean
30- all_columns ?: ColumnInfo [ ]
31- columns : ColumnInfo [ ]
30+ all_columns ?: EsqlColumnInfo [ ]
31+ columns : EsqlColumnInfo [ ]
3232 values : Array < Array < FieldValue > >
3333 /**
3434 * Cross-cluster search information. Present if `include_ccs_metadata` was `true` in the request
3535 * and a cross-cluster search was performed.
3636 */
37- _clusters ?: ClusterInfo
37+ _clusters ?: EsqlClusterInfo
3838 /**
3939 * Profiling information. Present if `profile` was `true` in the request.
4040 * The contents of this field are currently unstable.
@@ -47,12 +47,12 @@ export class AsyncEsqlResult extends EsqlResult {
4747 is_running : boolean
4848}
4949
50- export class ColumnInfo {
50+ export class EsqlColumnInfo {
5151 name : string
5252 type : string
5353}
5454
55- export class ClusterInfo {
55+ export class EsqlClusterInfo {
5656 total : integer
5757 successful : integer
5858 running : integer
You can’t perform that action at this time.
0 commit comments