Re: BUG #19023: Table DDL default column expression depending on temp objects

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: reshkekirill(at)gmail(dot)com
Cc: pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Re: BUG #19023: Table DDL default column expression depending on temp objects
Date: 2025-08-18 14:05:55
Message-ID: 347682.1755525955@sss.pgh.pa.us
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

PG Bug reporting form <noreply(at)postgresql(dot)org> writes:
> I have found two cases when user can define a relation, which has temp
> objects in its DEFAULT expression.
> First example is:
> ```
> reshke=# create temp sequence s1;
> CREATE SEQUENCE
> reshke=# create table tt(i int default nextval('s1'));
> CREATE TABLE
> ```

Appears to me to operate as intended: the DEFAULT will be dropped
at session exit, just as if you'd done DROP SEQUENCE s1 CASCADE.

> I think it is a bug that PostgreSQL allows this DDL to successfully
> complete.

Why?

> reshke=# create temp table x();
> CREATE TABLE
> reshke=# create table y (i int default nextval('x'));
> CREATE TABLE
> reshke=# insert into y default values ;
> ERROR: cannot open relation "x"
> DETAIL: This operation is not supported for tables.

This is not about whether x is temp or not, it's about whether
it's a sequence or not. The argument of nextval() is declared
as regclass, so we can verify that the constant is the name
of a relation; but the parser has no way to know that it ought
to be a sequence in particular.

> WDYT? Is this indeed a bug?

No. Sure, in a perfect world we could detect "it's not a sequence" at
parse time, but I can't see inventing "regsequence" just to improve
that.

regards, tom lane

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Dilip Kumar 2025-08-18 14:21:39 Re: BUG #18988: DROP SUBSCRIPTION locks not-yet-accessed database
Previous Message PG Bug reporting form 2025-08-18 13:32:24 BUG #19023: Table DDL default column expression depending on temp objects