-
Notifications
You must be signed in to change notification settings - Fork 285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pg_partman upgrade issue. #712
Comments
Please let me know once the issue is fixed. We are planning to upgrade the partman to 5.2.0. I was able to update the version to 5.0.0. Can I test the other scenarios using this or we have to wait until bug fix appleid ? |
Update has been released. Please let me know if it's working ok for you. |
Thanks for the update. will check and let you know |
Is update released on this pg_partman_15-5.2.0-1PGDG.rhel9.x86_64.rpm ? If there is any separate link pls reply. |
It should be
|
still I am unable to 5.2.1 on official link. Could you please us know when it will be updated. pg_partman_15-5.0.0-1PGDG.rhel9.x86_64.rpm 02-Jan-2024 16:49 201958 |
I have no control of the packaging at this time. That is managed by the RHEL repository maintainer. |
RHEL repository also got updated I can see the the package. will work on upgrade and update you if any issue. pg_partman_15-5.2.1-1PGDG.rhel9.x86_64.rpm 06-Dec-2024 10:34 |
I have installed partman 5.2.1 package and Post partman upgrade to 5.2.1 getting below error message when partman.run_maintenance triggered. Hourly maintenance failed for all of the tables.
------------+---------+------------+------------------------------------------------------ =# ALTER EXTENSION pg_partman UPDATE TO '5.2.1'; -----------------------------###############################------------------------------------------------- 2024-12-09 14:41:04 GMT [3586633-1] LOG: pg_partman dynamic background worker (dbname=salestaxhub_staging) dynamic background worker initialized with role postgres on database salestaxhub_staging I have tried to run it manually. i got this error message. =# SELECT partman.run_maintenance(); |
Yes, someone else reported this. I'm looking into it. Will hopefully have a fix out soon. Thank you for testing! |
thanks for the update. |
Version 5.2.2 has been tagged and released. Will have to wait until the package maintainers pick it up if you need a package for it. |
thanks for the update. I think it may take time to update in RHEL repository |
Have you been able to get updated packages and test that this is working for you now with the latest release? |
Trying to upgrade partman version from 4.7.3 to 5.2.0 but getting below error.
Did i miss any step ?
$ rpm -qa | grep partman
pg_partman_15-5.2.0-1PGDG.rhel9.x86_64
SELECT * FROM pg_available_extensions where name ='pg_partman';
name | default_version | installed_version | comment
------------+-----------------+-------------------+------------------------------------------------------
pg_partman | 5.2.0 | | Extension to manage partitioned tables by time or ID
ALTER EXTENSION pg_partman UPDATE TO '5.2.0';
WARNING: One or more partition sets are configured for quarterly or ISO weekly partitioning which is not supported in version 5.0.0 or greater. See documentation for migrating to standard intervals. This migration can and should be done after upgrading to ensure new partition suffixes are used.
ERROR: syntax error at or near "DECLARE"
I can able to update the extension to 5.0.0 but not 5.2.0
ALTER EXTENSION pg_partman UPDATE TO '5.0.0';
WARNING: One or more partition sets are configured for quarterly or ISO weekly partitioning which is not supported in version 5.0.0 or greater. See documentation for migrating to standard intervals. This migration can and should be done after upgrading to ensure new partition suffixes are used.
ALTER EXTENSION
SELECT * FROM pg_available_extensions where name ='pg_partman';
------------+-----------------+-------------------+------------------------------------------------------
pg_partman | 5.2.0 | 5.0.0 | Extension to manage partitioned tables by time or ID
ALTER EXTENSION pg_partman UPDATE TO '5.2.0';
ERROR: syntax error at or near "DECLARE"
The text was updated successfully, but these errors were encountered: