Re: [HACKERS] SELECT ... LIMIT (trial implementation)

Поиск
Список
Период
Сортировка
От Oleg Bartunov
Тема Re: [HACKERS] SELECT ... LIMIT (trial implementation)
Дата
Msg-id Pine.GSO.3.96.SK.981018215259.17519D-100000@ra
обсуждение исходный текст
Ответ на SELECT ... LIMIT (trial implementation)  (jwieck@debis.com (Jan Wieck))
Ответы Re: [HACKERS] SELECT ... LIMIT (trial implementation)
Список pgsql-hackers
Jan,

I tested your patch on my Linux box and it works ok, except
aggregates functions doesn't work properly, for example
count(*) always produces 0

kdo=> select count(*)  from work_flats limit 10,1000;
count
-----
(0 rows)

while

kdo=> select rooms from work_flats limit 10,1000;
rooms
-----
    3
    3
    3
    3
    3
    3
    3
    3
    3
    3
(10 rows)


    Regards,

        Oleg
_____________________________________________________________
Oleg Bartunov, sci.researcher, hostmaster of AstroNet,
Sternberg Astronomical Institute, Moscow University (Russia)
Internet: oleg@sai.msu.su, http://www.sai.msu.su/~megera/
phone: +007(095)939-16-83, +007(095)939-23-83


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

Предыдущее
От: Oleg Bartunov
Дата:
Сообщение: Re: [HACKERS] SELECT ... LIMIT (trial implementation)
Следующее
От: Paul A Vixie
Дата:
Сообщение: Re: [HACKERS] Re: inet/cidr/bind