given values that compare as unordered, make sure we reply that they
are equal, which is better than giving an arbitrary answer --- at least
it doesn't depend on which one is passed as which arg.
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.71 2001/05/03 19:00:36 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.72 2001/06/02 17:12:12 tgl Exp $
*
*-------------------------------------------------------------------------
*/
{
if (a > b)
return 1;
- else if (a == b)
- return 0;
- else
+ else if (a < b)
return -1;
+ else
+ return 0;
}
}
{
if (a > b)
return 1;
- else if (a == b)
- return 0;
- else
+ else if (a < b)
return -1;
+ else
+ return 0;
}
}