bq2cst 0.4.26 → 0.4.27

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 CHANGED
@@ -88,6 +88,7 @@ export type UnknownNode =
88
88
  | NullLiteral
89
89
  | NumericLiteral
90
90
  | OverClause
91
+ | OverwritePartitionsClause
91
92
  | Parameter
92
93
  | PivotOperator
93
94
  | PivotConfig
@@ -1014,6 +1015,7 @@ export type LoadStatement = XXXStatement & {
1014
1015
  data: NodeChild;
1015
1016
  into: NodeChild;
1016
1017
  ident: NodeChild;
1018
+ overwrite_partitions?: NodeChild;
1017
1019
  column_group?: NodeChild;
1018
1020
  partitionby?: NodeChild;
1019
1021
  clusterby?: NodeChild;
@@ -1062,6 +1064,15 @@ export type OverClause = BaseNode & {
1062
1064
  };
1063
1065
  };
1064
1066
 
1067
+ export type OverwritePartitionsClause = BaseNode & {
1068
+ token: Token;
1069
+ node_type: "OverwritePartitionsClause";
1070
+ children: {
1071
+ overwrite?: NodeChild;
1072
+ grouped_expr: NodeChild;
1073
+ };
1074
+ };
1075
+
1065
1076
  export type Parameter = IdentifierGeneral & {
1066
1077
  node_type: "Parameter";
1067
1078
  };
package/bq2cst_bg.wasm CHANGED
Binary file
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "collaborators": [
4
4
  "kitta65 <skndr666m1@gmail.com>"
5
5
  ],
6
- "version": "0.4.26",
6
+ "version": "0.4.27",
7
7
  "license": "MIT",
8
8
  "files": [
9
9
  "bq2cst_bg.wasm",