Skip to content

Commit b7f4ac6

Browse files
committed
replace obsolete info in README.md
1 parent 13dd68e commit b7f4ac6

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,13 +165,9 @@ Stops a background worker performing a concurrent partitioning task. Note: worke
165165

166166
### Triggers
167167
```plpgsql
168-
create_hash_update_trigger(parent REGCLASS)
168+
create_update_triggers(parent REGCLASS)
169169
```
170-
Creates the trigger on UPDATE for HASH partitions. The UPDATE trigger isn't created by default because of the overhead. It's useful in cases when the partitioning expression's value might change.
171-
```plpgsql
172-
create_range_update_trigger(parent REGCLASS)
173-
```
174-
Same as above, but for a RANGE-partitioned table.
170+
Creates a for-each-row trigger to enable cross-partition UPDATE on a table partitioned by HASH/RANGE. The trigger is not created automatically because of the overhead caused by its function. You don't have to use this feature unless partitioning key might change during an UPDATE.
175171

176172
### Post-creation partition management
177173
```plpgsql

0 commit comments

Comments
 (0)