Re: float8 errors in HEAD... - Mailing list pgsql-bugs

From Sean Chittenden
Subject Re: float8 errors in HEAD...
Date
Msg-id 20030508034940.GU49916@perrin.int.nxad.com
Whole thread Raw
In response to Re: float8 errors in HEAD...  (Tom Lane <tgl@sss.pgh.pa.us>)
List 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 by date:

Previous
From: Tom Lane
Date:
Subject: Re: float8 errors in HEAD...
Next
From: Tom Lane
Date:
Subject: Re: [PERFORM] [SQL] Unanswered Questions WAS: An unresolved performance problem.