7.0.3 max function

Поиск
Список
Период
Сортировка
От pgsql-bugs@postgresql.org
Тема 7.0.3 max function
Дата
Msg-id 200103281330.f2SDUdD64926@hub.org
обсуждение исходный текст
Ответы Re: 7.0.3 max function  (Karel Zak <zakkr@zf.jcu.cz>)
Re: 7.0.3 max function  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
Tae, KwangHo (khtae@selim.co.kr) reports a bug with a severity of 3
The lower the number the more severe it is.

Short Description
7.0.3 max function

Long Description
create table aaa ( aa varchar(3) );
insert into aaa values ('001');
insert into aaa values ('002');
insert into aaa values ('003');

select max(aa) from aaa;
 max
-----
 002
(1 row)

why???

Sample Code


No file was uploaded with this report

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

Предыдущее
От: Andriy I Pilipenko
Дата:
Сообщение: bug in PLPGSQL
Следующее
От: Karel Zak
Дата:
Сообщение: Re: 7.0.3 max function