-
With docker image postgres:13.10 + postgresql-13-partman installed on top of it.
But with postgres:14.1 + postgresql-14-partman
Supported syntax there is I have multiple production/non-production zones. Some use postgres 13.10 some use 14. I couldn't find elaborate changelog that highlight these differences. Please help me find it. It is required to get full clarity about changes. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The general changelog for 5.0 is here https://github.com/pgpartman/pg_partman/blob/master/CHANGELOG.md I do have a more extended 5.0 upgrade guide here that tries to cover the bigger issues people may face during a migration https://github.com/pgpartman/pg_partman/blob/master/doc/pg_partman_5.0.1_upgrade.md As far as the new syntax for https://github.com/pgpartman/pg_partman/blob/master/doc/pg_partman.md I'd written in the changelog that the syntax for many functions had changed quite a bit. Trying to document every single change individually would have been quite a lot of work which is why I just made the general statement to please review the docs for all the function calls you may be making. I've hopefully made the function documentation easier to read and also made things more consistent across the extension overall so hopefully it's better for you going forward. You can get the version of any extension internally from the
pg_partman's versions are always 3-dot numeric, so you should be able to parse it for comparisons that way.
Just note that not all extensions follow a numeric system, so if you need to do that sort of comparison with multiple extensions, you'll have to deal with each extension's versioning system (it may not even be number based). |
Beta Was this translation helpful? Give feedback.
The general changelog for 5.0 is here
https://github.com/pgpartman/pg_partman/blob/master/CHANGELOG.md
I do have a more extended 5.0 upgrade guide here that tries to cover the bigger issues people may face during a migration
https://github.com/pgpartman/pg_partman/blob/master/doc/pg_partman_5.0.1_upgrade.md
As far as the new syntax for
create_parent()
function and any other function, the doc reference should hopefully help.https://github.com/pgpartman/pg_partman/blob/master/doc/pg_partman.md
I'd written in the changelog that the syntax for many functions had changed quite a bit. Trying to document every single change individually would have been quite a lot of work which is why I just ma…