From: | jian he <jian(dot)universality(at)gmail(dot)com> |
---|---|
To: | Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org> |
Cc: | Pg Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>, Tender Wang <tndrwang(at)gmail(dot)com> |
Subject: | Re: not null constraints, again |
Date: | 2024-11-08 09:32:35 |
Message-ID: | CACJufxHgiCo6FEMBHfbNUfZuq=K9fa8ZE51OYOMsB5sqPX78rg@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
> Here's v11, which I intended to commit today, but didn't get around to.
> CI is happy with it, so I'll probably do it tomorrow first thing.
>
v11 still has column_constraint versus table_constraint inconsistency.
create table t7 (a int generated by default as identity, constraint
foo not null a no inherit, b int);
create table t7 (a int generated by default as identity not null no
inherit, b int);
create table t8 (a serial, constraint foo1 not null a no inherit);
create table t8 (a serial not null no inherit, b int);
i solved this issue at [1],
that patch has one whitespace issue though.
what do you think?
[1] https://postgr.es/m/CACJufxHgBsJrHyGJ0EQzi9XV+ZSozNDcUJ5sg-f5Wk+dGCYZMg@mail.gmail.com
From | Date | Subject | |
---|---|---|---|
Next Message | Dilip Kumar | 2024-11-08 09:47:04 | Fix small typo, use InvalidRelFileNumber instead of InvalidOid |
Previous Message | Amit Langote | 2024-11-08 09:27:32 | Re: Wrong result when enable_partitionwise_join is on if collation of PartitionKey and Column is different. |