@sqlanvil/core 1.2.0 → 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/bundle.d.ts +8 -1
- package/bundle.js +1 -1
- package/configs.proto +5 -0
- package/package.json +1 -1
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
|
|