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

Поиск
Список
Период
Сортировка
От PG Bug reporting form
Тема BUG #15710: ADD COLUMN IF NOT EXISTS adds constraint anyways
Дата
Msg-id 15710-f52bad04543be4cb@postgresql.org
обсуждение исходный текст
Ответы Re: BUG #15710: ADD COLUMN IF NOT EXISTS adds constraint anyways
Re: BUG #15710: ADD COLUMN IF NOT EXISTS adds constraint anyways
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      15710
Logged by:          Tom Palan
Email address:      thomas@palan.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


В списке pgsql-bugs по дате отправления:

Предыдущее
От: PG Bug reporting form
Дата:
Сообщение: BUG #15709: if drop exists syntax
Следующее
От: Pavel Stehule
Дата:
Сообщение: Re: BUG #15709: if drop exists syntax