[BUGS] BUG #14827: "ALTER TABLE... IF NOT EXISTS...ADD.. BIGSERIAL" leavesextra sequences

Поиск
Список
Период
Сортировка
От hvisage@gmail.com
Тема [BUGS] BUG #14827: "ALTER TABLE... IF NOT EXISTS...ADD.. BIGSERIAL" leavesextra sequences
Дата
Msg-id 20170925084522.1442.32786@wrigleys.postgresql.org
обсуждение исходный текст
Ответы Re: [BUGS] BUG #14827: "ALTER TABLE... IF NOT EXISTS...ADD..BIGSERIAL" leaves extra sequences  (Fabrízio de Royes Mello <fabriziomello@gmail.com>)
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      14827
Logged by:          Hendrik Visage
Email address:      hvisage@gmail.com
PostgreSQL version: 9.6.5
Operating system:   Debian 9
Description:

Goodday,With an alter table to add an UID field if it doesn't exist, the process
creates a sequence, but when the column does exist, the created sequence,
that isn't used, is just left there, and subsequent runs keeps adding extra
sequences.

postgres@tracsdbhvt01:~$ cat test-serial.sql
create database test;
\c test
create table test_serial ( teststring varchar(5));
alter table test_serial add column if not exists uid BIGSERIAL;
alter table test_serial add column if not exists uid BIGSERIAL;
\d
\d test_serial
postgres@tracsdbhvt01:~$ psql -p 5433 < test-serial.sql
CREATE DATABASE
You are now connected to database "test" as user "postgres".
CREATE TABLE
ALTER TABLE
NOTICE:  column "uid" of relation "test_serial" already exists, skipping
ALTER TABLE                 List of relationsSchema |         Name         |   Type   |  Owner
--------+----------------------+----------+----------public | test_serial          | table    | postgrespublic |
test_serial_uid_seq | sequence | postgrespublic | test_serial_uid_seq1 | sequence | postgres
 
(3 rows)
                                 Table "public.test_serial"  Column   |         Type         |
Modifiers
------------+----------------------+-----------------------------------------------------------teststring | character
varying(5)|uid        | bigint               | not null default 
nextval('test_serial_uid_seq'::regclass)

postgres@tracsdbhvt01:~$



--
Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-bugs

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

Предыдущее
От: Andrew Dunstan
Дата:
Сообщение: Re: [BUGS] BUG #14825: enum type: unsafe use?
Следующее
От: Greg Stark
Дата:
Сообщение: [BUGS] Re: Query planner skipping index depending on DISTINCT parameterorder (2)