Re: BUG #18407: ALTER TABLE SET SCHEMA on foreign table with SERIAL column does not move sequence to new schema

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, vidushi2504(at)gmail(dot)com
Cc: pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Re: BUG #18407: ALTER TABLE SET SCHEMA on foreign table with SERIAL column does not move sequence to new schema
Date: 2024-03-26 05:59:30
Message-ID: b3176e79-19a6-496c-9416-e95f5c1675f4@eisentraut.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On 25.03.24 17:17, Tom Lane wrote:
> PG Bug reporting form <noreply(at)postgresql(dot)org> writes:
>> I created a foreign table with a serial column and then moved the table to a
>> different schema. The sequence bound to the table column wasn't moved to the
>> new schema. I expected the sequence to be moved as well just like it works
>> for regular tables.
>
> Hmm ... that does seem fairly inconsistent. It looks like the cause
> is in AlterTableNamespaceInternal:
>
> /* Fix other dependent stuff */
> if (rel->rd_rel->relkind == RELKIND_RELATION ||
> rel->rd_rel->relkind == RELKIND_MATVIEW ||
> rel->rd_rel->relkind == RELKIND_PARTITIONED_TABLE)
> {
> AlterIndexNamespaces(classRel, rel, oldNspOid, nspOid, objsMoved);
> AlterSeqNamespaces(classRel, rel, oldNspOid, nspOid,
> objsMoved, AccessExclusiveLock);
> AlterConstraintNamespaces(RelationGetRelid(rel), oldNspOid, nspOid,
> false, objsMoved);
> }
>
> It's probably reasonable to have this relkind gating for
> AlterIndexNamespaces, although I'm not sure it saves much to
> skip that, either. But we can have sequences attached to
> foreign tables, and I think maybe constraints as well.
> Maybe it'd be best to just drop this relkind check altogether?

Yes, seems better to remove the relkind check.

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Peter Eisentraut 2024-03-26 07:19:09 Re: Regression tests fail with musl libc because libpq.so can't be loaded
Previous Message Subhrajit Mutsuddi 2024-03-26 04:24:25 Walsender getting klilled, ERROR: out of memory in server logs