bq2cst 0.4.30 → 0.4.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bq2cst.d.ts +53 -3
- package/bq2cst_bg.wasm +0 -0
- package/package.json +1 -1
package/bq2cst.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export type UnknownNode =
|
|
|
10
10
|
| AddConstraintClause
|
|
11
11
|
| AlterBICapacityStatement
|
|
12
12
|
| AlterColumnStatement
|
|
13
|
+
| AlterModelStatement
|
|
13
14
|
| AlterOrganizationStatement
|
|
14
15
|
| AlterProjectStatement
|
|
15
16
|
| AlterReservationStatement
|
|
@@ -37,6 +38,7 @@ export type UnknownNode =
|
|
|
37
38
|
| Comment
|
|
38
39
|
| Constraint
|
|
39
40
|
| CreateFunctionStatement
|
|
41
|
+
| CreateModelStatement
|
|
40
42
|
| CreateProcedureStatement
|
|
41
43
|
| CreateReservationStatement
|
|
42
44
|
| CreateRowAccessPolicyStatement
|
|
@@ -54,7 +56,8 @@ export type UnknownNode =
|
|
|
54
56
|
| EmptyStruct
|
|
55
57
|
| EOF
|
|
56
58
|
| ExecuteStatement
|
|
57
|
-
|
|
|
59
|
+
| ExportDataStatement
|
|
60
|
+
| ExportModelStatement
|
|
58
61
|
| ExtractArgument
|
|
59
62
|
| ForStatement
|
|
60
63
|
| ForSystemTimeAsOfClause
|
|
@@ -109,6 +112,7 @@ export type UnknownNode =
|
|
|
109
112
|
| TableSampleRatio
|
|
110
113
|
| Template
|
|
111
114
|
| TransactionStatement
|
|
115
|
+
| TrainingDataCustomHolidayClause
|
|
112
116
|
| TruncateStatement
|
|
113
117
|
| Type
|
|
114
118
|
| TypeDeclaration
|
|
@@ -260,6 +264,17 @@ export type AlterColumnStatement = BaseNode & {
|
|
|
260
264
|
};
|
|
261
265
|
};
|
|
262
266
|
|
|
267
|
+
export type AlterModelStatement = XXXStatement & {
|
|
268
|
+
node_type: "AlterModelStatement";
|
|
269
|
+
children: {
|
|
270
|
+
what: NodeChild;
|
|
271
|
+
if_exists?: NodeVecChild;
|
|
272
|
+
ident: NodeChild;
|
|
273
|
+
set: NodeChild;
|
|
274
|
+
options: NodeChild;
|
|
275
|
+
};
|
|
276
|
+
};
|
|
277
|
+
|
|
263
278
|
export type AlterOrganizationStatement = XXXStatement & {
|
|
264
279
|
node_type: "AlterOrganizationStatement";
|
|
265
280
|
children: {
|
|
@@ -567,6 +582,23 @@ export type CreateFunctionStatement = XXXStatement & {
|
|
|
567
582
|
};
|
|
568
583
|
};
|
|
569
584
|
|
|
585
|
+
export type CreateModelStatement = XXXStatement & {
|
|
586
|
+
node_type: "CreateModelStatement";
|
|
587
|
+
children: {
|
|
588
|
+
or_replace?: NodeVecChild;
|
|
589
|
+
what: NodeChild;
|
|
590
|
+
if_not_exists?: NodeVecChild;
|
|
591
|
+
ident: NodeChild;
|
|
592
|
+
transform?: NodeChild;
|
|
593
|
+
output?: NodeChild;
|
|
594
|
+
input?: NodeChild;
|
|
595
|
+
remote?: NodeChild;
|
|
596
|
+
options?: NodeChild;
|
|
597
|
+
query?: NodeChild;
|
|
598
|
+
training_data_custom_holiday?: NodeChild;
|
|
599
|
+
};
|
|
600
|
+
};
|
|
601
|
+
|
|
570
602
|
export type CreateProcedureStatement = XXXStatement & {
|
|
571
603
|
node_type: "CreateProcedureStatement";
|
|
572
604
|
children: {
|
|
@@ -767,8 +799,8 @@ export type ExecuteStatement = XXXStatement & {
|
|
|
767
799
|
};
|
|
768
800
|
};
|
|
769
801
|
|
|
770
|
-
export type
|
|
771
|
-
node_type: "
|
|
802
|
+
export type ExportDataStatement = XXXStatement & {
|
|
803
|
+
node_type: "ExportDataStatement";
|
|
772
804
|
children: {
|
|
773
805
|
data: NodeChild;
|
|
774
806
|
with_connection?: NodeChild;
|
|
@@ -777,6 +809,15 @@ export type ExportStatement = XXXStatement & {
|
|
|
777
809
|
};
|
|
778
810
|
};
|
|
779
811
|
|
|
812
|
+
export type ExportModelStatement = XXXStatement & {
|
|
813
|
+
node_type: "ExportModelStatement";
|
|
814
|
+
children: {
|
|
815
|
+
what: NodeChild;
|
|
816
|
+
ident: NodeChild;
|
|
817
|
+
options?: NodeChild;
|
|
818
|
+
};
|
|
819
|
+
};
|
|
820
|
+
|
|
780
821
|
export type ExtractArgument = BaseNode & {
|
|
781
822
|
token: Token;
|
|
782
823
|
node_type: "ExtractArgument";
|
|
@@ -1246,6 +1287,15 @@ export type TransactionStatement = XXXStatement & {
|
|
|
1246
1287
|
};
|
|
1247
1288
|
};
|
|
1248
1289
|
|
|
1290
|
+
export type TrainingDataCustomHolidayClause = BaseNode & {
|
|
1291
|
+
node_type: "TrainingDataCustomHolidayClause";
|
|
1292
|
+
children: {
|
|
1293
|
+
training_data: NodeChild;
|
|
1294
|
+
custom_holiday: NodeChild;
|
|
1295
|
+
rparen: NodeChild;
|
|
1296
|
+
};
|
|
1297
|
+
};
|
|
1298
|
+
|
|
1249
1299
|
export type TruncateStatement = XXXStatement & {
|
|
1250
1300
|
node_type: "TruncateStatement";
|
|
1251
1301
|
children: {
|
package/bq2cst_bg.wasm
CHANGED
|
Binary file
|