Recurse to sequences on ownership change for all relkinds When a table ownership is changed, we must apply that also to any owned sequences. (Otherwise, it would result in a situation that cannot be restored, because linked sequences must have the same owner as the table.) But this was previously only applied to regular tables and materialized views. But it should also apply to at least foreign tables. This patch removes the relkind check altogether, because it doesn't save very much and just introduces the possibility of similar omissions.
Bug: #15238 Reported-by: Christoph Berg <[email protected]> Branch ------ REL9_5_STABLE Details ------- https://git.postgresql.org/pg/commitdiff/992f8542a370d6885fc19e79e0fc46a1ebf902cb Modified Files -------------- src/backend/commands/tablecmds.c | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-)
