bq2cst 0.4.29 → 0.4.30
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 +19 -0
- package/bq2cst.js +5 -5
- package/bq2cst_bg.wasm +0 -0
- package/package.json +1 -1
package/bq2cst.d.ts
CHANGED
|
@@ -51,6 +51,7 @@ export type UnknownNode =
|
|
|
51
51
|
| DropRowAccessPolicyStatement
|
|
52
52
|
| DropStatement
|
|
53
53
|
| ElseIfClause
|
|
54
|
+
| EmptyStruct
|
|
54
55
|
| EOF
|
|
55
56
|
| ExecuteStatement
|
|
56
57
|
| ExportStatement
|
|
@@ -58,6 +59,7 @@ export type UnknownNode =
|
|
|
58
59
|
| ForStatement
|
|
59
60
|
| ForSystemTimeAsOfClause
|
|
60
61
|
| GrantStatement
|
|
62
|
+
| GroupByExprs
|
|
61
63
|
| GroupedExpr
|
|
62
64
|
| GroupedExprs
|
|
63
65
|
| GroupedIdentWithOptions
|
|
@@ -740,6 +742,13 @@ export type ElseIfClause = BaseNode & {
|
|
|
740
742
|
};
|
|
741
743
|
};
|
|
742
744
|
|
|
745
|
+
export type EmptyStruct = Expr & {
|
|
746
|
+
node_type: "EmptyStruct";
|
|
747
|
+
children: {
|
|
748
|
+
rparen: NodeChild
|
|
749
|
+
};
|
|
750
|
+
};
|
|
751
|
+
|
|
743
752
|
export type EOF = BaseNode & {
|
|
744
753
|
token: null;
|
|
745
754
|
node_type: "EOF";
|
|
@@ -809,6 +818,16 @@ export type GrantStatement = XXXStatement & {
|
|
|
809
818
|
};
|
|
810
819
|
};
|
|
811
820
|
|
|
821
|
+
export type GroupByExprs = BaseNode & {
|
|
822
|
+
token: Token;
|
|
823
|
+
node_type: "GroupByExprs";
|
|
824
|
+
children: {
|
|
825
|
+
by: NodeChild;
|
|
826
|
+
how?: NodeVecChild;
|
|
827
|
+
exprs: { NodeVec: Expr[] & UnknownNode[] };
|
|
828
|
+
};
|
|
829
|
+
};
|
|
830
|
+
|
|
812
831
|
export type GroupedExpr = FromItemExpr & {
|
|
813
832
|
node_type: "GroupedExpr";
|
|
814
833
|
children: {
|
package/bq2cst.js
CHANGED
|
@@ -251,6 +251,11 @@ module.exports.__wbg_error_f851667af71bcfc6 = function(arg0, arg1) {
|
|
|
251
251
|
}
|
|
252
252
|
};
|
|
253
253
|
|
|
254
|
+
module.exports.__wbindgen_object_clone_ref = function(arg0) {
|
|
255
|
+
const ret = getObject(arg0);
|
|
256
|
+
return addHeapObject(ret);
|
|
257
|
+
};
|
|
258
|
+
|
|
254
259
|
module.exports.__wbindgen_number_new = function(arg0) {
|
|
255
260
|
const ret = arg0;
|
|
256
261
|
return addHeapObject(ret);
|
|
@@ -266,11 +271,6 @@ module.exports.__wbindgen_string_new = function(arg0, arg1) {
|
|
|
266
271
|
return addHeapObject(ret);
|
|
267
272
|
};
|
|
268
273
|
|
|
269
|
-
module.exports.__wbindgen_object_clone_ref = function(arg0) {
|
|
270
|
-
const ret = getObject(arg0);
|
|
271
|
-
return addHeapObject(ret);
|
|
272
|
-
};
|
|
273
|
-
|
|
274
274
|
module.exports.__wbg_set_20cbc34131e76824 = function(arg0, arg1, arg2) {
|
|
275
275
|
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
276
276
|
};
|
package/bq2cst_bg.wasm
CHANGED
|
Binary file
|