You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -91,15 +91,15 @@ Performs HASH partitioning for `relation` by integer key `attribute`. The `parti
91
91
create_range_partitions(relation REGCLASS,
92
92
attribute TEXT,
93
93
start_value ANYELEMENT,
94
-
interval ANYELEMENT,
95
-
count INTEGER DEFAULT NULL
94
+
p_interval ANYELEMENT,
95
+
p_countINTEGER DEFAULT NULL
96
96
partition_data BOOLEAN DEFAULT TRUE)
97
97
98
98
create_range_partitions(relation REGCLASS,
99
99
attribute TEXT,
100
100
start_value ANYELEMENT,
101
-
interval INTERVAL,
102
-
count INTEGER DEFAULT NULL,
101
+
p_interval INTERVAL,
102
+
p_countINTEGER DEFAULT NULL,
103
103
partition_data BOOLEAN DEFAULT TRUE)
104
104
```
105
105
Performs RANGE partitioning for `relation` by partitioning key `attribute`. `start_value` argument specifies initial value, `interval` sets the range of values in a single partition, `count` is the number of premade partitions (if not set then pathman tries to determine it based on attribute values). Partition creation callback is invoked for each partition if set beforehand.
Performs RANGE-partitioning from specified range for `relation` by partitioning key `attribute`. Partition creation callback is invoked for each partition if set beforehand.
@@ -146,25 +146,25 @@ Same as above, but for a RANGE-partitioned table.
146
146
### Post-creation partition management
147
147
```plpgsql
148
148
split_range_partition(partition REGCLASS,
149
-
value ANYELEMENT,
149
+
split_value ANYELEMENT,
150
150
partition_name TEXT DEFAULT NULL)
151
151
```
152
-
Split RANGE `partition` in two by `value`. Partition creation callback is invoked for a new partition if available.
152
+
Split RANGE `partition` in two by `split_value`. Partition creation callback is invoked for a new partition if available.
0 commit comments