Re: bug in join?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: bug in join?
Дата
Msg-id 7117.1010008938@sss.pgh.pa.us
обсуждение исходный текст
Ответ на bug in join?  (Laurette Cisneros <laurette@nextbus.com>)
Ответы Re: bug in join?
Re: bug in join?
Список pgsql-hackers
Laurette Cisneros <laurette@nextbus.com> writes:
> This join worked last week and today it gets and error:
> select * from b, d
>  where b.address = d.address;
> It now fails with the following error:
> ERROR:  join_selectivity: bad value -0.121693

Probably what has changed is the pg_statistic data (VACUUM ANALYZE
results).  Please send the results of

select * from pg_stats where tablename = 'b';
select * from pg_stats where tablename = 'd';
        regards, tom lane


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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: software license question
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Bulkloading using COPY - ignore duplicates?