For the TODO list

Поиск
Список
Период
Сортировка
От Constantin Teodorescu
Тема For the TODO list
Дата
Msg-id 36714CD1.1B02A9D6@flex.ro
обсуждение исходный текст
Ответы Re: [HACKERS] For the TODO list  (Bruce Momjian <maillist@candle.pha.pa.us>)
Re: For the TODO list  (Bruce Momjian <maillist@candle.pha.pa.us>)
Список pgsql-hackers
Maybe you could include on the TODO list the following bug 



Alter table add column doesn't save defaults options :

test=> create table students (id int4, name text);
CREATE
test=> insert into students values (1,'bill');
INSERT 39338 1
test=> alter table students add column age int2 default 20;
ADD
test=> insert into students values (2,'tom');
INSERT 39340 1
test=> select * from students;
id|name|age
--+----+---1|bill|2|tom |
(2 rows)

The default for age does not work !


Constantin Teodorescu
FLEX Consulting Braila, ROMANIA


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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: [HACKERS] lock table
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] Sigh, build is broken again