File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,9 @@ export interface SimplifiedPlanItem {
3838 aCpu ?: number ;
3939 aRows ?: number ;
4040 eCost ?: string ;
41+ eRows ?: string ;
42+ eSize ?: string ;
43+ children ?: SimplifiedPlanItem [ ] ;
4144}
4245
4346export interface PreparedQueryData extends IQueryResult {
@@ -57,11 +60,11 @@ export interface QueryResult {
5760
5861export interface QueryState {
5962 input : string ;
60- tenantPath ?: string ;
61- result ?: QueryResult ;
63+ result ?: QueryResult & { isTraceReady ?: boolean } ;
6264 history : {
6365 queries : QueryInHistory [ ] ;
6466 currentIndex : number ;
6567 filter ?: string ;
6668 } ;
69+ tenantPath ?: string ;
6770}
Original file line number Diff line number Diff line change @@ -32,5 +32,4 @@ export interface QueryResponseChunk {
3232 ast ?: string ;
3333}
3434
35- // Make the union type explicit about the discriminant
3635export type StreamingChunk = SessionChunk | StreamDataChunk | QueryResponseChunk ;
You can’t perform that action at this time.
0 commit comments