NAN code

From: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
To: hackers(at)postgreSQL(dot)org (PostgreSQL-development)
Subject: NAN code
Date: 1999-01-01 04:16:28
Message-ID: 199901010417.XAA25728@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
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(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 1999-01-01 04:23:48 NAN code
Previous Message Bruce Momjian 1998-12-31 22:36:55 NAN value