Replies: 2 comments 5 replies
-
For non-native partitioning, I have not made a specific inheritance for replica identity, so it likely is not. I'm currently working on phasing out non-native partitioning support in pg_partman, so I likely will not investigate adding that for non-native. As part of the next release development, I'll test and see if native partitioning is doing replica identity inheritance. If it's not, I'll see what can be done. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Is there a specific reason you are using non-native partitioning? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We are using pg_partman's non-native partitioning on postgres 13 and need to specify a custom REPLICA IDENTITY USING INDEX for the partitions, based on a UNIQUE CONSTRAINT on the parent table.
The UNIQUE CONSTRAINT is inherited by the children, but I can find no mention if the REPLICA IDENTITY is also inherited (is it part of the constraint definition?) or if I need a custom maintenance job to confiure the REPLICA IDENTITY for newly generated partitions.
Sorry if I missed an obvious place to look for an answer.
Beta Was this translation helpful? Give feedback.
All reactions