NAN code - Mailing list pgsql-hackers

From Bruce Momjian
Subject NAN code
Date
Msg-id 199901010417.XAA25728@candle.pha.pa.us
Whole thread Raw
Responses Re: [HACKERS] NAN code  (jwieck@debis.com (Jan Wieck))
Re: [HACKERS] NAN code  (orion.SAPserv.Hamburg.dsh.de!wieck@sapserv.debis.de)
List 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,
Pennsylvania19026
 


pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: NAN value
Next
From: Bruce Momjian
Date:
Subject: NAN code