File tree 3 files changed +11
-4
lines changed
3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 163
163
} else {
164
164
// Use a for loop instead of forEach to avoid nested functions
165
165
// Otherwise "return" will not work properly
166
- for(var propt in currentNode){
167
- if (currentNode.hasOwnProperty(propt )) {
168
- currentChild = currentNode[propt ]
169
- if (id == propt ) {
166
+ for(var property in currentNode){
167
+ if (currentNode.hasOwnProperty(property )) {
168
+ currentChild = currentNode[property ]
169
+ if (id == property ) {
170
170
return currentChild;
171
171
} else {
172
172
// Search in the current child
1316
1316
"queueLength" : {
1317
1317
"type" : "integer",
1318
1318
"format" : "int32"
1319
+ },
1320
+ "computeStats" : {
1321
+ "$ref" : "#/components/schemas/common.ComputeStats"
1319
1322
}
1320
1323
}
1321
1324
};
Original file line number Diff line number Diff line change 3124
3124
"queueLength" : {
3125
3125
"type" : " integer" ,
3126
3126
"format" : " int32"
3127
+ },
3128
+ "computeStats" : {
3129
+ "$ref" : " #/definitions/common.ComputeStats"
3127
3130
}
3128
3131
}
3129
3132
},
Original file line number Diff line number Diff line change @@ -159,6 +159,7 @@ export type AnalyticServiceAsyncExecuteSqlResponse = {
159
159
queryId ?: string ;
160
160
executionId ?: string ;
161
161
queueLength ?: number ;
162
+ computeStats ?: CommonComputeStats ;
162
163
} ;
163
164
164
165
export type AnalyticServiceExecutionInfo = {
You can’t perform that action at this time.
0 commit comments