Skip to content

Commit a36cdc6

Browse files
Removed bullet and colons in H2
1 parent f6bb4d6 commit a36cdc6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/postgresql/flexible-server/how-to-use-pg-partman.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ CREATE EXTENSION PG_PARTMAN;
3030

3131
## Overview
3232

33-
- When an identity feature uses sequences, the data that comes from the parent table gets new sequence value. It doesn't generate new sequence values when the data is directly added to the child table. 
33+
When an identity feature uses sequences, the data that comes from the parent table gets new sequence value. It doesn't generate new sequence values when the data is directly added to the child table. 
3434

3535
PG_partman uses a template to control whether the table is UNLOGGED or not. This means that the Alter table command can't change this status for a partition set. By changing the status on the template, you can apply it to all future partitions. But for existing child tables, you must use the Alter command manually. [Here](https://www.postgresql.org/message-id/flat/15954-b61523bed4b110c4%40postgresql.org) is a bug that shows why.    
3636

@@ -145,15 +145,15 @@ Here's the output of the select statement executed.
145145

146146
:::image type="content" source="media/how-to-use-pg-partman/pg-partman-explain-plan-output.png" alt-text="Screenshot of explain plan output.":::
147147

148-
## How to manually run the run_maintenance procedure:
148+
## How to manually run the run_maintenance procedure
149149

150150
```sql
151151
select partman.run_maintenance(p_parent_table:='partman.partition_test');
152152
```
153153

154154
Warning: If you insert data before creating partitions, the data goes to the default partition. If the default partition has data that belongs to a new partition that you want to be created later, then you get a default partition violation error and the procedure won't work. Therefore, change the premake value as recommended above and then run the procedure.
155155

156-
## How to schedule maintenance procedure using pg_cron:
156+
## How to schedule maintenance procedure using pg_cron
157157

158158
Run the maintenance procedure using pg_cron. To enable `pg_cron` on your server follow the below steps.
159159
1. Add PG_CRON to `azure.extensions`, `Shared_preload_libraries` and `cron.database_name` server parameter from Azure portal.

0 commit comments

Comments
 (0)