bq2cst 0.5.6 → 0.5.8
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 +12 -3
- package/bq2cst_bg.wasm +0 -0
- package/package.json +1 -1
package/bq2cst.d.ts
CHANGED
|
@@ -129,6 +129,7 @@ export type UnknownNode =
|
|
|
129
129
|
| WindowFrameClause
|
|
130
130
|
| WindowSpecification
|
|
131
131
|
| WithClause
|
|
132
|
+
| WithOffsetClause
|
|
132
133
|
| WithPartitionColumnsClause
|
|
133
134
|
| WithQuery
|
|
134
135
|
| XXXByExprs;
|
|
@@ -179,6 +180,7 @@ export type Expr = BaseNode & {
|
|
|
179
180
|
|
|
180
181
|
export type FromItemExpr = Expr & {
|
|
181
182
|
children: {
|
|
183
|
+
with_offset: NodeChild;
|
|
182
184
|
pivot?: NodeChild;
|
|
183
185
|
unpivot?: NodeChild;
|
|
184
186
|
};
|
|
@@ -473,9 +475,6 @@ export type CallingUnnest = FromItemExpr &
|
|
|
473
475
|
CallingFunctionGeneral & {
|
|
474
476
|
node_type: "CallingUnnest";
|
|
475
477
|
children: {
|
|
476
|
-
with_offset: NodeChild;
|
|
477
|
-
offset_alias: NodeChild;
|
|
478
|
-
offset_as: NodeChild;
|
|
479
478
|
distinct: undefined;
|
|
480
479
|
ignore_nulls: undefined;
|
|
481
480
|
orderby: undefined;
|
|
@@ -1465,6 +1464,16 @@ export type WithClause = BaseNode & {
|
|
|
1465
1464
|
};
|
|
1466
1465
|
};
|
|
1467
1466
|
|
|
1467
|
+
export type WithOffsetClause = BaseNode & {
|
|
1468
|
+
token: Token;
|
|
1469
|
+
node_type: "WithOffsetClause";
|
|
1470
|
+
children: {
|
|
1471
|
+
offset: { Node: Keyword };
|
|
1472
|
+
as?: { Node: Keyword };
|
|
1473
|
+
alias?: NodeChild;
|
|
1474
|
+
};
|
|
1475
|
+
};
|
|
1476
|
+
|
|
1468
1477
|
export type WithPartitionColumnsClause = BaseNode & {
|
|
1469
1478
|
token: Token;
|
|
1470
1479
|
node_type: "WithPartitionColumnsClause";
|
package/bq2cst_bg.wasm
CHANGED
|
Binary file
|