bq2cst 0.5.0 → 0.5.1
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 +8 -1
- package/bq2cst.js +7 -6
- package/bq2cst_bg.wasm +0 -0
- package/package.json +1 -1
package/bq2cst.d.ts
CHANGED
|
@@ -866,7 +866,7 @@ export type GroupByExprs = BaseNode & {
|
|
|
866
866
|
children: {
|
|
867
867
|
by: NodeChild;
|
|
868
868
|
how?: NodeVecChild;
|
|
869
|
-
exprs
|
|
869
|
+
exprs?: { NodeVec: Expr[] & UnknownNode[] };
|
|
870
870
|
};
|
|
871
871
|
};
|
|
872
872
|
|
|
@@ -1167,6 +1167,13 @@ export type RaiseStatement = XXXStatement & {
|
|
|
1167
1167
|
};
|
|
1168
1168
|
};
|
|
1169
1169
|
|
|
1170
|
+
export type RangeLiteral = Expr & {
|
|
1171
|
+
node_type: "RangeLiteral";
|
|
1172
|
+
children: {
|
|
1173
|
+
type: NodeChild;
|
|
1174
|
+
};
|
|
1175
|
+
};
|
|
1176
|
+
|
|
1170
1177
|
export type RenameColumnClause = BaseNode & {
|
|
1171
1178
|
token: Token;
|
|
1172
1179
|
node_type: "RenameColumnClause";
|
package/bq2cst.js
CHANGED
|
@@ -164,6 +164,7 @@ function passStringToWasm0(arg, malloc, realloc) {
|
|
|
164
164
|
const ret = encodeString(arg, view);
|
|
165
165
|
|
|
166
166
|
offset += ret.written;
|
|
167
|
+
ptr = realloc(ptr, len, offset, 1) >>> 0;
|
|
167
168
|
}
|
|
168
169
|
|
|
169
170
|
WASM_VECTOR_LEN = offset;
|
|
@@ -281,21 +282,21 @@ module.exports.__wbindgen_string_new = function(arg0, arg1) {
|
|
|
281
282
|
return addHeapObject(ret);
|
|
282
283
|
};
|
|
283
284
|
|
|
284
|
-
module.exports.
|
|
285
|
+
module.exports.__wbg_set_2e973e6a06d4c5c3 = function(arg0, arg1, arg2) {
|
|
285
286
|
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
286
287
|
};
|
|
287
288
|
|
|
288
|
-
module.exports.
|
|
289
|
+
module.exports.__wbg_new_75208e29bddfd88c = function() {
|
|
289
290
|
const ret = new Array();
|
|
290
291
|
return addHeapObject(ret);
|
|
291
292
|
};
|
|
292
293
|
|
|
293
|
-
module.exports.
|
|
294
|
+
module.exports.__wbg_new_d1cc518eff6805bb = function() {
|
|
294
295
|
const ret = new Map();
|
|
295
296
|
return addHeapObject(ret);
|
|
296
297
|
};
|
|
297
298
|
|
|
298
|
-
module.exports.
|
|
299
|
+
module.exports.__wbg_new_632630b5cec17f21 = function() {
|
|
299
300
|
const ret = new Object();
|
|
300
301
|
return addHeapObject(ret);
|
|
301
302
|
};
|
|
@@ -305,11 +306,11 @@ module.exports.__wbindgen_is_string = function(arg0) {
|
|
|
305
306
|
return ret;
|
|
306
307
|
};
|
|
307
308
|
|
|
308
|
-
module.exports.
|
|
309
|
+
module.exports.__wbg_set_79c308ecd9a1d091 = function(arg0, arg1, arg2) {
|
|
309
310
|
getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
|
|
310
311
|
};
|
|
311
312
|
|
|
312
|
-
module.exports.
|
|
313
|
+
module.exports.__wbg_set_e4cfc2763115ffc7 = function(arg0, arg1, arg2) {
|
|
313
314
|
const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
|
|
314
315
|
return addHeapObject(ret);
|
|
315
316
|
};
|
package/bq2cst_bg.wasm
CHANGED
|
Binary file
|