bq2cst 0.5.3 → 0.5.4
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 +13 -0
- package/bq2cst.js +6 -6
- package/bq2cst_bg.wasm +0 -0
- package/package.json +1 -1
package/bq2cst.d.ts
CHANGED
|
@@ -118,6 +118,7 @@ export type UnknownNode =
|
|
|
118
118
|
| Type
|
|
119
119
|
| TypeDeclaration
|
|
120
120
|
| UnaryOperator
|
|
121
|
+
| UndropStatement
|
|
121
122
|
| UnpivotConfig
|
|
122
123
|
| UnpivotOperator
|
|
123
124
|
| UpdateStatement
|
|
@@ -570,6 +571,7 @@ export type CreateFunctionStatement = XXXStatement & {
|
|
|
570
571
|
or_replace?: NodeVecChild;
|
|
571
572
|
temp?: NodeChild;
|
|
572
573
|
table?: NodeChild;
|
|
574
|
+
aggregate?: NodeChild;
|
|
573
575
|
what: NodeChild;
|
|
574
576
|
if_not_exists?: NodeVecChild;
|
|
575
577
|
ident: NodeChild;
|
|
@@ -608,6 +610,7 @@ export type CreateProcedureStatement = XXXStatement & {
|
|
|
608
610
|
if_not_exists?: NodeVecChild;
|
|
609
611
|
ident: NodeChild;
|
|
610
612
|
group: NodeChild;
|
|
613
|
+
external?: NodeChild;
|
|
611
614
|
with_connection?: NodeChild;
|
|
612
615
|
options?: NodeChild;
|
|
613
616
|
language?: NodeChild;
|
|
@@ -1328,6 +1331,7 @@ export type Type = BaseNode & {
|
|
|
1328
1331
|
default?: NodeChild;
|
|
1329
1332
|
options?: NodeChild;
|
|
1330
1333
|
collate?: NodeChild
|
|
1334
|
+
aggregate?: NodeChild;
|
|
1331
1335
|
};
|
|
1332
1336
|
};
|
|
1333
1337
|
|
|
@@ -1349,6 +1353,15 @@ export type UnaryOperator = Expr & {
|
|
|
1349
1353
|
};
|
|
1350
1354
|
};
|
|
1351
1355
|
|
|
1356
|
+
export type UndropStatement = XXXStatement & {
|
|
1357
|
+
node_type: "UndropStatement";
|
|
1358
|
+
children: {
|
|
1359
|
+
what: NodeChild;
|
|
1360
|
+
if_not_exists?: NodeVecChild;
|
|
1361
|
+
ident: NodeChild;
|
|
1362
|
+
};
|
|
1363
|
+
};
|
|
1364
|
+
|
|
1352
1365
|
export type UnpivotConfig = BaseNode & {
|
|
1353
1366
|
token: Token;
|
|
1354
1367
|
node_type: "UnpivotConfig";
|
package/bq2cst.js
CHANGED
|
@@ -282,21 +282,21 @@ module.exports.__wbindgen_string_new = function(arg0, arg1) {
|
|
|
282
282
|
return addHeapObject(ret);
|
|
283
283
|
};
|
|
284
284
|
|
|
285
|
-
module.exports.
|
|
285
|
+
module.exports.__wbg_set_f975102236d3c502 = function(arg0, arg1, arg2) {
|
|
286
286
|
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
287
287
|
};
|
|
288
288
|
|
|
289
|
-
module.exports.
|
|
289
|
+
module.exports.__wbg_new_16b304a2cfa7ff4a = function() {
|
|
290
290
|
const ret = new Array();
|
|
291
291
|
return addHeapObject(ret);
|
|
292
292
|
};
|
|
293
293
|
|
|
294
|
-
module.exports.
|
|
294
|
+
module.exports.__wbg_new_d9bc3a0147634640 = function() {
|
|
295
295
|
const ret = new Map();
|
|
296
296
|
return addHeapObject(ret);
|
|
297
297
|
};
|
|
298
298
|
|
|
299
|
-
module.exports.
|
|
299
|
+
module.exports.__wbg_new_72fb9a18b5ae2624 = function() {
|
|
300
300
|
const ret = new Object();
|
|
301
301
|
return addHeapObject(ret);
|
|
302
302
|
};
|
|
@@ -306,11 +306,11 @@ module.exports.__wbindgen_is_string = function(arg0) {
|
|
|
306
306
|
return ret;
|
|
307
307
|
};
|
|
308
308
|
|
|
309
|
-
module.exports.
|
|
309
|
+
module.exports.__wbg_set_d4638f722068f043 = function(arg0, arg1, arg2) {
|
|
310
310
|
getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
|
|
311
311
|
};
|
|
312
312
|
|
|
313
|
-
module.exports.
|
|
313
|
+
module.exports.__wbg_set_8417257aaedc936b = function(arg0, arg1, arg2) {
|
|
314
314
|
const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
|
|
315
315
|
return addHeapObject(ret);
|
|
316
316
|
};
|
package/bq2cst_bg.wasm
CHANGED
|
Binary file
|