More ALTER TABLE/TYPE bugs

Поиск
Список
Период
Сортировка
От Christopher Kings-Lynne
Тема More ALTER TABLE/TYPE bugs
Дата
Msg-id 411065A4.3030602@familyhealth.com.au
обсуждение исходный текст
Ответы Re: More ALTER TABLE/TYPE bugs  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
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



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Have you heard? It's 8.0 ...
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Preliminary PITR documentation available