Re: effective_io_concurrency in 9.6beta

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: effective_io_concurrency in 9.6beta
Дата
Msg-id 7307.1464114490@sss.pgh.pa.us
обсуждение исходный текст
Ответ на effective_io_concurrency in 9.6beta  (Jeff Janes <jeff.janes@gmail.com>)
Ответы Re: effective_io_concurrency in 9.6beta  (Alvaro Herrera <alvherre@2ndquadrant.com>)
Список pgsql-hackers
Jeff Janes <jeff.janes@gmail.com> writes:
> commit 1aba62ec made zero be an illegal value for effective_io_concurrency.
> i think this was an accident.  If not, then the sample postgresql.conf
> (at least) needs to be updated.

It looks like the problem is that the new range check

+   /* This range check shouldn't fail, but let's be paranoid */
+   return (new_prefetch_pages > 0.0 && new_prefetch_pages < (double) INT_MAX);

should be testing for >= 0.0 not > 0.0.
        regards, tom lane



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Allow COPY to use parameters
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: effective_io_concurrency in 9.6beta