NAN code

Bruce Momjian <maillist@candle.pha.pa.us>

From: Bruce Momjian <maillist@candle.pha.pa.us>
To: hackers@postgreSQL.org (PostgreSQL-development)
Date: 1999-01-01T04:16:28Z
Lists: pgsql-hackers
I have changed the NAN code, so if NAN is not defined, we just use 'num'
as NAN, since we only get here if num is NAN.  Seems like a good fix for
platforms that can't assign a NAN to a variable.

---------------------------------------------------------------------------

    if (NUMERIC_IS_NAN(num))
    {
        result = (float32)palloc(sizeof(float32data));
#ifdef NAN
        *result = NAN;
#else
        *result = num;
#endif
        return result;
    }

-- 
  Bruce Momjian                        |  http://www.op.net/~candle
  maillist@candle.pha.pa.us            |  (610) 853-3000
  +  If your life is a hard drive,     |  830 Blythe Avenue
  +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026