Re: [BUGS] 8.0.0 make check fails on Solaris 9 (sparc)

2005-02-01 Thread Tamas Vincze
Michael, Fuhr wrote: The errors were the following: template1=# SELECT 'NaN'::float4; ERROR: 22003: type "real" value out of range: overflow LOCATION: CheckFloat4Val, float.c:219 The code around float.c:219 looks like this: if (fabs(val) > FLOAT4_MAX) ereport(ERROR,

Re: [BUGS] 8.0.0 make check fails on Solaris 9 (sparc)

2005-01-27 Thread Tamas Vincze
Michael Fuhr wrote: Is anything else under there? I re-built it with $ ./configure --prefix=/usr/local/pgsql-8.0.0 --without-readline and still have the same errors in the float4, float8 and misc tests. ldd src/test/regress/tmp_check/install/usr/local/pgsql-8.0.0/bin/postmaster libz.so =>

Re: [BUGS] 8.0.0 make check fails on Solaris 9 (sparc)

2005-01-27 Thread Tamas Vincze
Hi Michael, I see test failures in float4, float8 and misc. What configure options did you use? What compiler are you using? Did you specify any custom compiler or linker options? The configure command was: $ ./configure --prefix=/usr/local/pgsql-8.0.0 --enable-thread-safety --with-includes=/expo

[BUGS] 8.0.0 make check fails on Solaris 9 (sparc)

2005-01-27 Thread Tamas Vincze
Hi, I see test failures in float4, float8 and misc. Both float4 and float8 fail on the tests involving NaN and Infinity. Here's the verbose output of the failed statements: template1=# SELECT 'NaN'::float4; ERROR: 22003: type "real" value out of range: overflow LOCATION: CheckFloat4Val, float.c:2