depended on table types

Поиск
Список
Период
Сортировка
От Andrew Dunstan
Тема depended on table types
Дата
Msg-id 423A05EE.5060805@dunslane.net
обсуждение исходный текст
Ответы Re: depended on table types
Список pgsql-hackers
Is one supposed to be able to alter the type of a table whose definition
has been used A  composite in another table? Somewhat surprisingly to
me, the following test did not produce an error:

create table a( x text, y int);
create table b( z a);
insert into b values('(\'aaa\',3)');
select * from b;
alter table a add column q timestamp not null;
select * from b;


cheers

andrew



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

Предыдущее
От: Simon Riggs
Дата:
Сообщение: Re: securing pg_proc
Следующее
От: Greg Stark
Дата:
Сообщение: Re: Lockfile restart failure is still there :-(