Skip to content

Commit 89118f4

Browse files
authored
ESQL: prefix duplicates of existing types (#4245)
1 parent 101e270 commit 89118f4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

specification/esql/_types/EsqlResult.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ import { DurationValue, UnitMillis } from '@_types/Time'
2727
export 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

0 commit comments

Comments
 (0)