Re: group by - Mailing list pgsql-general

From Kris Jurka
Subject Re: group by
Date
Msg-id Pine.LNX.4.33.0310031909050.15689-100000@leary.csoft.net
Whole thread Raw
In response to group by  (Kathy Zhu <Kathy.Zhu@Sun.COM>)
List pgsql-general

On Fri, 3 Oct 2003, Kathy Zhu wrote:

> Hi,
>
> I notices a weird thing here.
>
> version 7.2.1
> on Solaris
>
> table "test", has a field "state".
> There are 4 "state" values, 1, 2, 3, 4.
>
> select count(*) from test group by state;
> took 11500 msec
>
> but
>
> select count(*) from test where state = 1;
> select count(*) from test where state = 2;
> select count(*) from test where state = 3;
> select count(*) from test where state = 4;
> total took 626 msec
>

I believe Solaris's qsort implementation (which is used for the group by)
has problems dealing with large numbers of similar values.

I think in later versions of pg our own qsort is used.

Kris Jurka



pgsql-general by date:

Previous
From: "Nigel J. Andrews"
Date:
Subject: Re: group by
Next
From: Peter Eisentraut
Date:
Subject: Re: book on advanced postgresql?