Skip to content

Commit a98a052

Browse files
committed
fix minor typo in README.md
1 parent 27fcbf6 commit a98a052

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ create_hash_partitions(relation REGCLASS,
6868
attribute TEXT,
6969
partitions_count INTEGER,
7070
partition_name TEXT DEFAULT NULL,
71-
partition_data BOOOLEAN DEFAULT TRUE)
71+
partition_data BOOLEAN DEFAULT TRUE)
7272
```
7373
Performs HASH partitioning for `relation` by integer key `attribute`. The `partitions_count` parameter specifies the number of partitions to create; it cannot be changed afterwards. If `partition_data` is `true` then all the data will be automatically copied from the parent table to partitions. Note that data migration may took a while to finish and the table will be locked until transaction commits. See `partition_table_concurrently()` for a lock-free way to migrate data. Partition creation callback is invoked for each partition if set beforehand (see `set_part_init_callback()`).
7474

0 commit comments

Comments
 (0)