Insert a hack into get_float8_nan (both core and ecpg copies) to deal with

the fact that NetBSD/mips is currently broken, as per buildfarm member pika.

Also add regression tests to ensure that get_float8_nan and get_float4_nan
are exercised even on platforms where they are not needed by
float8in/float4in.

Zoltán Böszörményi and Tom Lane
REL9_0_ALPHA5_BRANCH
Tom Lane 16 years ago
parent bf379837dc
commit 4d17a2146c
  1. 5
      src/backend/utils/adt/float.c
  2. 6
      src/interfaces/ecpg/ecpglib/data.c
  3. 6
      src/test/regress/expected/float4-exp-three-digits.out
  4. 6
      src/test/regress/expected/float4.out
  5. 6
      src/test/regress/expected/float8-exp-three-digits-win32.out
  6. 6
      src/test/regress/expected/float8-small-is-zero.out
  7. 6
      src/test/regress/expected/float8-small-is-zero_1.out
  8. 6
      src/test/regress/expected/float8.out
  9. 2
      src/test/regress/sql/float4.sql
  10. 1
      src/test/regress/sql/float8.sql

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/float.c,v 1.165 2010/02/08 20:39:51 tgl Exp $
* $PostgreSQL: pgsql/src/backend/utils/adt/float.c,v 1.166 2010/02/27 21:53:21 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -130,7 +130,8 @@ get_float4_infinity(void)
double
get_float8_nan(void)
{
#ifdef NAN
/* (double) NAN doesn't work on some NetBSD/MIPS releases */
#if defined(NAN) && !(defined(__NetBSD__) && defined(__mips__))
/* C99 standard way */
return (double) NAN;
#else

@ -1,10 +1,11 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/data.c,v 1.50 2010/02/26 02:01:29 momjian Exp $ */
/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/data.c,v 1.51 2010/02/27 21:53:21 tgl Exp $ */
#define POSTGRES_ECPG_INTERNAL
#include "postgres_fe.h"
#include <stdlib.h>
#include <string.h>
#include <float.h>
#include <math.h>
#include "ecpgtype.h"
@ -85,7 +86,8 @@ get_float8_infinity(void)
static double
get_float8_nan(void)
{
#ifdef NAN
/* (double) NAN doesn't work on some NetBSD/MIPS releases */
#if defined(NAN) && !(defined(__NetBSD__) && defined(__mips__))
return (double) NAN;
#else
return (double) (0.0 / 0.0);

@ -119,6 +119,12 @@ SELECT 'nan'::float4 / 'nan'::float4;
NaN
(1 row)
SELECT 'nan'::numeric::float4;
float4
--------
NaN
(1 row)
SELECT '' AS five, * FROM FLOAT4_TBL;
five | f1
------+--------------

@ -119,6 +119,12 @@ SELECT 'nan'::float4 / 'nan'::float4;
NaN
(1 row)
SELECT 'nan'::numeric::float4;
float4
--------
NaN
(1 row)
SELECT '' AS five, * FROM FLOAT4_TBL;
five | f1
------+-------------

@ -119,6 +119,12 @@ SELECT 'nan'::float8 / 'nan'::float8;
NaN
(1 row)
SELECT 'nan'::numeric::float8;
float8
--------
NaN
(1 row)
SELECT '' AS five, * FROM FLOAT8_TBL;
five | f1
------+----------------------

@ -123,6 +123,12 @@ SELECT 'nan'::float8 / 'nan'::float8;
NaN
(1 row)
SELECT 'nan'::numeric::float8;
float8
--------
NaN
(1 row)
SELECT '' AS five, * FROM FLOAT8_TBL;
five | f1
------+----------------------

@ -123,6 +123,12 @@ SELECT 'nan'::float8 / 'nan'::float8;
NaN
(1 row)
SELECT 'nan'::numeric::float8;
float8
--------
NaN
(1 row)
SELECT '' AS five, * FROM FLOAT8_TBL;
five | f1
------+----------------------

@ -119,6 +119,12 @@ SELECT 'nan'::float8 / 'nan'::float8;
NaN
(1 row)
SELECT 'nan'::numeric::float8;
float8
--------
NaN
(1 row)
SELECT '' AS five, * FROM FLOAT8_TBL;
five | f1
------+----------------------

@ -40,7 +40,7 @@ SELECT ' INFINITY x'::float4;
SELECT 'Infinity'::float4 + 100.0;
SELECT 'Infinity'::float4 / 'Infinity'::float4;
SELECT 'nan'::float4 / 'nan'::float4;
SELECT 'nan'::numeric::float4;
SELECT '' AS five, * FROM FLOAT4_TBL;

@ -40,6 +40,7 @@ SELECT ' INFINITY x'::float8;
SELECT 'Infinity'::float8 + 100.0;
SELECT 'Infinity'::float8 / 'Infinity'::float8;
SELECT 'nan'::float8 / 'nan'::float8;
SELECT 'nan'::numeric::float8;
SELECT '' AS five, * FROM FLOAT8_TBL;

Loading…
Cancel
Save