pgsql: Fix not-null constraint test

From: Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix not-null constraint test
Date: 2023-09-01 17:50:31
Message-ID: E1qc8Hv-00202s-5E@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix not-null constraint test

When a partitioned table has a primary key, trying to find the
corresponding not-null constraint for that column would come up empty,
causing code that's trying to check said not-null constraint to crash.
Fix by only running the check when the not-null constraint exists.

Reported-by: Alexander Lakhin <exclusion(at)gmail(dot)com>
Discussion: https://postgr.es/m/d57b4a69-7394-3146-5976-9a1ef27e7972@gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/d0ec2ddbe088f6da35444fad688a62eae4fbd840

Modified Files
--------------
src/backend/commands/tablecmds.c | 26 +++++++++++++++++++-------
src/test/regress/expected/constraints.out | 11 +++++++++++
src/test/regress/sql/constraints.sql | 11 +++++++++++
3 files changed, 41 insertions(+), 7 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2023-09-03 23:05:14 pgsql: Fix handling of shared statistics with dropped databases
Previous Message Alvaro Herrera 2023-09-01 12:23:39 pgsql: ATPrepAddPrimaryKey: ignore non-PK constraints