Обсуждение: More ALTER TABLE/TYPE bugs

Поиск
Список
Период
Сортировка

More ALTER TABLE/TYPE bugs

От
Christopher Kings-Lynne
Дата:
Changing to a domain and back doesn't do dependencies correctly:

test=# create table parent (a int4);
CREATE TABLE
test=# drop table parent;
DROP TABLE
test=# drop domain dom;
DROP DOMAIN
test=# create table parent (a int4);
CREATE TABLE
test=# create domain dom as bigint;
CREATE DOMAIN
test=# alter table parent alter a type dom;
ALTER TABLE
test=# alter table parent alter a type int4;
ERROR:  found unexpected dependency for column

Chris



Re: More ALTER TABLE/TYPE bugs

От
Tom Lane
Дата:
Christopher Kings-Lynne <chriskl@familyhealth.com.au> writes:
> Changing to a domain and back doesn't do dependencies correctly:

Fixed.  Thanks.
        regards, tom lane