Skip to content

Commit 7c5e3bc

Browse files
author
Sentio Bot
committed
chore: update
1 parent 85965c8 commit 7c5e3bc

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

doc/index.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1483,6 +1483,9 @@
14831483
},
14841484
"cachePolicy" : {
14851485
"$ref" : "#/components/schemas/common.CachePolicy"
1486+
},
1487+
"engine" : {
1488+
"$ref" : "#/components/schemas/analytic_service.ExecuteEngine"
14861489
}
14871490
},
14881491
"example" : {
@@ -1512,6 +1515,9 @@
15121515
},
15131516
"cachePolicy" : {
15141517
"$ref" : "#/components/schemas/common.CachePolicy"
1518+
},
1519+
"engine" : {
1520+
"$ref" : "#/components/schemas/analytic_service.ExecuteEngine"
15151521
}
15161522
},
15171523
"example" : {
@@ -1577,6 +1583,11 @@
15771583
"$ref" : "#/components/schemas/common.ComputeStats"
15781584
}
15791585
}
1586+
};
1587+
defs["analytic_service.ExecuteEngine"] = {
1588+
"type" : "string",
1589+
"default" : "DEFAULT",
1590+
"enum" : [ "DEFAULT", "LITE", "PRO", "MAX", "ULTRA" ]
15801591
};
15811592
defs["analytic_service.ExecutionInfo"] = {
15821593
"type" : "object",

openapi.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3602,6 +3602,9 @@
36023602
},
36033603
"cachePolicy": {
36043604
"$ref": "#/definitions/common.CachePolicy"
3605+
},
3606+
"engine": {
3607+
"$ref": "#/definitions/analytic_service.ExecuteEngine"
36053608
}
36063609
}
36073610
},
@@ -3631,6 +3634,9 @@
36313634
},
36323635
"cachePolicy": {
36333636
"$ref": "#/definitions/common.CachePolicy"
3637+
},
3638+
"engine": {
3639+
"$ref": "#/definitions/analytic_service.ExecuteEngine"
36343640
}
36353641
}
36363642
},
@@ -3692,6 +3698,17 @@
36923698
}
36933699
}
36943700
},
3701+
"analytic_service.ExecuteEngine": {
3702+
"type": "string",
3703+
"enum": [
3704+
"DEFAULT",
3705+
"LITE",
3706+
"PRO",
3707+
"MAX",
3708+
"ULTRA"
3709+
],
3710+
"default": "DEFAULT"
3711+
},
36953712
"analytic_service.ExecutionInfo": {
36963713
"type": "object",
36973714
"properties": {

src/types.gen.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,7 @@ export namespace analytic_service {
343343
*/
344344
cursor?: string;
345345
cachePolicy?: common.CachePolicy;
346+
engine?: ExecuteEngine;
346347
};
347348
export type AnalyticServiceExecuteSqlBody = {
348349
projectId?: string;
@@ -353,6 +354,7 @@ export namespace analytic_service {
353354
*/
354355
cursor?: string;
355356
cachePolicy?: common.CachePolicy;
357+
engine?: ExecuteEngine;
356358
};
357359
export type AnalyticServiceSaveRefreshableMaterializedViewBody = {
358360
projectId?: string;
@@ -372,6 +374,7 @@ export namespace analytic_service {
372374
queueLength?: number;
373375
computeStats?: common.ComputeStats;
374376
};
377+
export type ExecuteEngine = 'DEFAULT' | 'LITE' | 'PRO' | 'MAX' | 'ULTRA';
375378
export type ExecutionInfo = {
376379
queryId?: string;
377380
executionId?: string;

0 commit comments

Comments
 (0)