bq2cst 0.4.28 → 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 +20 -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
|
|
@@ -393,6 +395,7 @@ export type BinaryOperator = Expr & {
|
|
|
393
395
|
children: {
|
|
394
396
|
not?: NodeChild;
|
|
395
397
|
left: { Node: Expr & UnknownNode };
|
|
398
|
+
quantifier?: NodeChild;
|
|
396
399
|
right: { Node: Expr & UnknownNode };
|
|
397
400
|
};
|
|
398
401
|
};
|
|
@@ -739,6 +742,13 @@ export type ElseIfClause = BaseNode & {
|
|
|
739
742
|
};
|
|
740
743
|
};
|
|
741
744
|
|
|
745
|
+
export type EmptyStruct = Expr & {
|
|
746
|
+
node_type: "EmptyStruct";
|
|
747
|
+
children: {
|
|
748
|
+
rparen: NodeChild
|
|
749
|
+
};
|
|
750
|
+
};
|
|
751
|
+
|
|
742
752
|
export type EOF = BaseNode & {
|
|
743
753
|
token: null;
|
|
744
754
|
node_type: "EOF";
|
|
@@ -808,6 +818,16 @@ export type GrantStatement = XXXStatement & {
|
|
|
808
818
|
};
|
|
809
819
|
};
|
|
810
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
|
+
|
|
811
831
|
export type GroupedExpr = FromItemExpr & {
|
|
812
832
|
node_type: "GroupedExpr";
|
|
813
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
|