aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/timestamp.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2003-08-08 21:42:59 +0000
committerBruce Momjian <bruce@momjian.us>2003-08-08 21:42:59 +0000
commit46785776c42143af8f5433bb580ff13f2a9f65e1 (patch)
tree0c1f6da64634a202ff20176865b4a9dc69b8ac40 /src/backend/utils/adt/timestamp.c
parent0e2b12bd9689ac4fd353f7dba33dd796d0e3a07d (diff)
downloadpostgresql-46785776c42143af8f5433bb580ff13f2a9f65e1.tar.gz
postgresql-46785776c42143af8f5433bb580ff13f2a9f65e1.zip
Another pgindent run with updated typedefs.
Diffstat (limited to 'src/backend/utils/adt/timestamp.c')
-rw-r--r--src/backend/utils/adt/timestamp.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend/utils/adt/timestamp.c b/src/backend/utils/adt/timestamp.c
index b8a5e3fcb19..e76ec646690 100644
--- a/src/backend/utils/adt/timestamp.c
+++ b/src/backend/utils/adt/timestamp.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/timestamp.c,v 1.91 2003/08/08 00:10:31 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/timestamp.c,v 1.92 2003/08/08 21:42:10 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1307,11 +1307,12 @@ timestamp_cmp_internal(Timestamp dt1, Timestamp dt2)
#ifdef HAVE_INT64_TIMESTAMP
return ((dt1 < dt2) ? -1 : ((dt1 > dt2) ? 1 : 0));
#else
+
/*
* When using float representation, we have to be wary of NaNs.
*
- * We consider all NANs to be equal and larger than any non-NAN. This
- * is somewhat arbitrary; the important thing is to have a consistent
+ * We consider all NANs to be equal and larger than any non-NAN. This is
+ * somewhat arbitrary; the important thing is to have a consistent
* sort order.
*/
if (isnan(dt1))