BUG #15710: ADD COLUMN IF NOT EXISTS adds constraint anyways

From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: thomas(at)palan(dot)at
Subject: BUG #15710: ADD COLUMN IF NOT EXISTS adds constraint anyways
Date: 2019-03-21 08:41:53
Message-ID: 15710-f52bad04543be4cb@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 15710
Logged by: Tom Palan
Email address: thomas(at)palan(dot)at
PostgreSQL version: 9.6.10
Operating system: Debian stretch 64bit
Description:

If I want to add a column to a table which and the column may or may not
already exist, the specified column constraint like UNIQUE is added every
time the command is issued, regardless if the column gets added or not.

Example:
CREATE TABLE test (id SERIAL PRIMARY KEY);
ALTER TABLE test ADD COLUMN IF NOT EXISTS new_column integer UNIQUE;

Result:
\d test
Table "public.test"
Column | Type | Modifiers
------------+---------+---------------------------------------------------
id | integer | not null default nextval('test_id_seq'::regclass)
new_column | integer |
Indexes:
"test_pkey" PRIMARY KEY, btree (id)
"test_new_column_key" UNIQUE CONSTRAINT, btree (new_column)

After issuing the command:
ALTER TABLE test ADD COLUMN IF NOT EXISTS new_column integer UNIQUE;

again, the table structure is like:
\d test
Table "public.test"
Column | Type | Modifiers
------------+---------+---------------------------------------------------
id | integer | not null default nextval('test_id_seq'::regclass)
new_column | integer |
Indexes:
"test_pkey" PRIMARY KEY, btree (id)
"test_new_column_key" UNIQUE CONSTRAINT, btree (new_column)
"test_new_column_key1" UNIQUE CONSTRAINT, btree (new_column)

Result: a new UNIQUE constraint was added
Expected result: as the column new_column already exists, creating the
column and the specified constraint should not be done

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Pavel Stehule 2019-03-21 13:20:17 Re: BUG #15709: if drop exists syntax
Previous Message PG Bug reporting form 2019-03-21 07:25:48 BUG #15709: if drop exists syntax