@sqlanvil/core 1.1.2 → 1.3.0

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/configs.proto CHANGED
@@ -898,6 +898,11 @@ message PostgresOptions {
898
898
  message Bound {
899
899
  string name = 1;
900
900
  string values = 2;
901
+
902
+ // Sub-partitioning: make this child a partitioned table in its own right
903
+ // (PARTITION BY ...), with its own nested `partitions`. Omit for a leaf
904
+ // child that holds rows directly.
905
+ Partition sub_partition = 3;
901
906
  }
902
907
  repeated Bound partitions = 3;
903
908
 
package/package.json CHANGED
@@ -34,7 +34,7 @@
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "version": "1.1.2",
37
+ "version": "1.3.0",
38
38
  "name": "@sqlanvil/core",
39
39
  "description": "sqlanvil core API.",
40
40
  "main": "bundle.js"