pg_partman icon indicating copy to clipboard operation
pg_partman copied to clipboard

Partition management extension for PostgreSQL

Results 117 pg_partman issues
Sort by recently updated
recently updated
newest added

Hi, I have set retention_schema='archive' and below is the part_config settings. -- CREATE SCHEMA IF NOT EXISTS partman; -- CREATE SCHEMA IF NOT EXISTS archive; -- CREATE EXTENSION pg_partman WITH...

confirmed bug
in development

Missing primary key on template table and default partition when running `create_parent` causes issues in replicating DDL changes using EVENT Triggers in a logically replicated environment. Requesting to add `INCLUDING...

feature request
question

I'm tryin to create extension in PostgreSql running in Windows 10. I see documentation for other OS but not for Windows. Any help is appreciated.

question

I am trying to install the pg_partman v4.0.0 extension in a Docker container with a redhat ubi8 base image and postgresql version 12.6. Here is the portion of my Dockerfile...

help wanted

Hi, We're using `pg-partman` to partition an existing table in an AWS Aurora PostgreSQL DB (on an unused clone of the database). It's a table with approximately 23 billion rows,...

question

Just read this note from the HOWTO: > The next step is to partition the data out of the default. You DO NOT want to leave data in the default...

question

I'm adding `SELECT partman.create_parent()` function into a evolution file, which will be used to create tables. but if the partitions already exists it is throwing error, in production environment we...

question

########################################################################## create 2 tables with foreign key dependency also create indexes CREATE SCHEMA data_mart; CREATE TABLE data_mart.organization ( org_id BIGSERIAL, org_name TEXT, CONSTRAINT pk_organization PRIMARY KEY (org_id) ); CREATE TABLE...

upstream issue

We're encountering an error like this when running `CALL run_maintenance_proc()` on our database with a native range partitioned table without partitions: ```sql psql:.../db/structure.sql:8965: ERROR: null values cannot be formatted as...

Ref: https://github.com/pgpartman/pg_partman/blob/master/doc/pg_partman_howto_native.md > The partition_data_proc() can handle moving the data out of the default. However, it cannot move data in any interval smaller than the partition interval when moving data...

feature request