Bug #503: case and LIMIT not working together

Поиск
Список
Период
Сортировка
От pgsql-bugs@postgresql.org
Тема Bug #503: case and LIMIT not working together
Дата
Msg-id 200110301900.f9UJ0FT09155@postgresql.org
обсуждение исходный текст
Ответы Re: Bug #503: case and LIMIT not working together
Re: Bug #503: case and LIMIT not working together
Список pgsql-bugs
Carl Anderson (candrsn@mindspring.com) reports a bug with a severity of 2
The lower the number the more severe it is.

Short Description
case and LIMIT not working together

Long Description
PostreSQL 7/1/3 i686-pc-linux-gnu compiled by GCC 3.0

when I count ( case ... ) LIMIT

The count is from the entire table not from the LIMIT

in the below example the count is returned with the
same value in all three statements

Sample Code
select count( case when b='T' then 1 else null) from test limit 50;

select count( case when b='T' then 1 else null) from test;

select count(*) from test where b = 'T';

No file was uploaded with this report

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Porting issue with openssl and no /dev/random
Следующее
От: "Andras Belokosztolszki"
Дата:
Сообщение: Triggers cause backend crash