Added pg_partman extension#159
Open
egkristi wants to merge 1 commit into
Open
Conversation
Contributor
|
Thanks @egkristi for the contribution. However, as the contribution guide says, we need an issue to be created before the PR. Could you please do it and then link the PR to the issue? Thanks. |
|
Hello, any news about this extension ? |
6bec61a to
7878f87
Compare
pg_partman is a PostgreSQL extension for automated table partition management. It supports both time-based and ID-based partitioning with automatic creation and maintenance of child tables. The background worker (pg_partman_bgw) can automatically run partition maintenance at configured intervals, removing the need for external cron jobs. Closes cloudnative-pg#205 Signed-off-by: Kristiansen, Erling Gustav Moland <Erling.Kristiansen@skatteetaten.no>
gbartolini
reviewed
May 22, 2026
Comment on lines
+29
to
+32
| # Binaries (maintenance scripts) | ||
| COPY --from=builder /usr/lib/postgresql/${PG_MAJOR}/bin/check_unique_constraint.py /bin/ | ||
| COPY --from=builder /usr/lib/postgresql/${PG_MAJOR}/bin/dump_partition.py /bin/ | ||
| COPY --from=builder /usr/lib/postgresql/${PG_MAJOR}/bin/vacuum_maintenance.py /bin/ |
gbartolini
reviewed
May 22, 2026
| extension_control_path = [] | ||
| dynamic_library_path = [] | ||
| ld_library_path = [] | ||
| bin_path = ["bin"] |
Contributor
There was a problem hiding this comment.
Thanks for following this standard
Contributor
|
Do you think you can resolve the conflict? Is it feasible to add a specific smoke test for the extension? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Following the template and Contribution instructions.
This is the pg_partman extension.
Closes #205