Re: float8 errors in HEAD...

Поиск
Список
Период
Сортировка
От Sean Chittenden
Тема Re: float8 errors in HEAD...
Дата
Msg-id 20030508034940.GU49916@perrin.int.nxad.com
обсуждение исходный текст
Ответ на Re: float8 errors in HEAD...  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
> >> Do you know how to tell the difference between what you have and
> >> the freebsd releases that produce the small-is-zero results?
>
> > I don't know in what context you're talking about detecting this,
> > but, how's this?
>
> We need to know it in the context of the pg_regress shell script,
> which at the moment wants to make those decisions on the basis of
> the "host" string determined by configure.  Unless the OS version
> number from uname is different between the fixed and broken
> releases, we gotta problem ...

I don't know if there's a better way of doing this with an if, but:

case `uname` in
'FreeBSD')
        echo "Using FreeBSD"
        if [ `sysctl -n kern.osreldate` -gt 500112 ]; then
                echo "Non-broken stdtod()"
        else
                echo "Broken stdtod()"
        fi
        ;;
*)
        echo "Not FreeBSD"
        ;;
esac

-sc

--
Sean Chittenden

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: float8 errors in HEAD...
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [PERFORM] [SQL] Unanswered Questions WAS: An unresolved performance problem.