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 { DurationValue, UnitMillis } from '@_types/Time'
27
27
export class EsqlResult {
28
28
took ?: DurationValue < UnitMillis >
29
29
is_partial ?: boolean
30
- all_columns ?: ColumnInfo [ ]
31
- columns : ColumnInfo [ ]
30
+ all_columns ?: EsqlColumnInfo [ ]
31
+ columns : EsqlColumnInfo [ ]
32
32
values : Array < Array < FieldValue > >
33
33
/**
34
34
* Cross-cluster search information. Present if `include_ccs_metadata` was `true` in the request
35
35
* and a cross-cluster search was performed.
36
36
*/
37
- _clusters ?: ClusterInfo
37
+ _clusters ?: EsqlClusterInfo
38
38
/**
39
39
* Profiling information. Present if `profile` was `true` in the request.
40
40
* The contents of this field are currently unstable.
@@ -47,12 +47,12 @@ export class AsyncEsqlResult extends EsqlResult {
47
47
is_running : boolean
48
48
}
49
49
50
- export class ColumnInfo {
50
+ export class EsqlColumnInfo {
51
51
name : string
52
52
type : string
53
53
}
54
54
55
- export class ClusterInfo {
55
+ export class EsqlClusterInfo {
56
56
total : integer
57
57
successful : integer
58
58
running : integer
You can’t perform that action at this time.
0 commit comments