bug in 6.5.3...

Поиск
Список
Период
Сортировка
От Don Baccus
Тема bug in 6.5.3...
Дата
Msg-id 3.0.1.32.20000111181539.01034e10@mail.pacifier.com
обсуждение исходный текст
Ответы Re: [HACKERS] bug in 6.5.3...  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
I looked in the "TODO" list and didn't find any mention of
avg() or relevant items regarding aggregates so here's my
bug du jour:

acs=> create table foo(p numeric(9,2));
CREATE
acs=> select avg(p) from foo;
ERROR:  overflow on numeric ABS(value) >= 10^-1 for field with precision 0
scale 1723
acs=> 
acs=> insert into foo values(3);
INSERT 1014409 1
acs=> select avg(p) from foo;
ERROR:  overflow on numeric ABS(value) >= 10^-1 for field with precision 0
scale 1723
acs=> select p from foo;  p
----
3.00
(1 row)

acs=> select max(p) from foo;max
----
3.00
(1 row)



- Don Baccus, Portland OR <dhogaza@pacifier.com> Nature photos, on-line guides, Pacific Northwest Rare Bird Alert
Serviceand other goodies at http://donb.photo.net.
 


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] CREATE TABLE ... PRIMARY KEY kills backend
Следующее
От: Bruce Momjian
Дата:
Сообщение: patch re-added