Re: [HACKERS] random_fract and aix compiler bug

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [HACKERS] random_fract and aix compiler bug
Дата
Msg-id 28709.1066452410@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [HACKERS] random_fract and aix compiler bug  ("Zeugswetter Andreas SB SD" <ZeugswetterA@spardat.at>)
Список pgsql-patches
"Zeugswetter Andreas SB SD" <ZeugswetterA@spardat.at> writes:
> Would we be happy with the following, which would work ?
>         } while (z <= 0 || z == MAX_RANDOM_VALUE);

I suppose this doesn't?
          } while (z <= 0 || z >= MAX_RANDOM_VALUE);

            regards, tom lane

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

Предыдущее
От: Neil Conway
Дата:
Сообщение: minor psql cleanup
Следующее
От: Tom Lane
Дата:
Сообщение: Re: fix memory leak in libpq