From: | Erik Wienhold <ewie(at)ewie(dot)name> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | lukas(dot)eder(at)gmail(dot)com, pgsql-bugs(at)lists(dot)postgresql(dot)org |
Subject: | Re: BUG #18660: information_schema.columns.ordinal_position has gaps when primary key columns are dropped |
Date: | 2024-10-17 15:02:35 |
Message-ID: | 44eba52f-7991-4899-9d23-aea52522fd30@ewie.name |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
On 2024-10-17 16:19 +0200, Tom Lane wrote:
> PG Bug reporting form <noreply(at)postgresql(dot)org> writes:
> > [ information_schema.columns.ordinal_position is just a copy of attnum ]
>
> > This is against the SQL standard specification of the
> > information_schema.columns.ordinal_position column, which has a constraint
> > as follows:
>
> > CONSTRAINT COLUMNS_ORDINAL_POSITION_CONTIGUOUS_CHECK CHECK (0 = ALL (
> > SELECT MAX(ORDINAL_POSITION) - COUNT(*)
> > FROM COLUMNS
> > GROUP BY
> > TABLE_CATALOG, TABLE_SCHEMA, TABLE_NAME
> > ))
Same for information_schema.attributes.ordinal_position, although I
don't know if that defines an equivalent constraint.
> Hm. I'm not sure if it's worth making that view even slower in order
> to clean up the numbering.
But then we should at least fix the docs which say that the count starts
at 1.
> Just as an aside, we'd still be violating the letter of this
> constraint, because for a zero-column table the sub-select will
> produce NULL not 0.
I don't think so. That sub-select only returns NULL when looking up
that empty table. That entire CHECK expression with "ALL" will happily
return true.
regress=# create table t0 ();
CREATE TABLE
regress=# select max(ordinal_position) - count(*) from information_schema.columns where table_name = 't0';
?column?
----------
<NULL>
(1 row)
regress=# select 0 = all (select max(ordinal_position) - count(*) from information_schema.columns group by table_catalog, table_schema, table_name);
?column?
----------
t
(1 row)
--
Erik
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2024-10-17 15:03:13 | Re: BUG #18662: ORDER BY after GROUPING SETS does not order correctly for certain WHERE condition |
Previous Message | Tom Lane | 2024-10-17 14:19:15 | Re: BUG #18660: information_schema.columns.ordinal_position has gaps when primary key columns are dropped |