Re: stats are way off on 8.4 b1

Поиск
Список
Период
Сортировка
От Grzegorz Jaśkiewicz
Тема Re: stats are way off on 8.4 b1
Дата
Msg-id 2f4958ff0904180502x65dd00b5r614bba6ce73eb7ef@mail.gmail.com
обсуждение исходный текст
Ответ на Re: stats are way off on 8.4 b1  (Heikki Linnakangas <heikki.linnakangas@enterprisedb.com>)
Список pgsql-performance
2009/4/18 Heikki Linnakangas <heikki.linnakangas@enterprisedb.com>:
> Grzegorz Jaśkiewicz wrote:
>>
>> Can correlation be negative ?
>
> Yes, if the data in the column are in descending order. For example:
>
> postgres=# CREATE TABLE foo(id int4);
> CREATE TABLE
> postgres=# INSERT INTO foo SELECT 1000 - generate_series(1, 1000);
> INSERT 0 1000
> postgres=# ANALYZE foo;
> ANALYZE
> postgres=# SELECT attname, correlation FROM pg_stats  WHERE tablename='foo';
>  attname | correlation
> ---------+-------------
>  id      |          -1
> (1 row)

aye, thanks.


--
GJ

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

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: Re: stats are way off on 8.4 b1
Следующее
От: Tom Lane
Дата:
Сообщение: Re: No hash join across partitioned tables?