summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/datetime.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/utils/adt/datetime.c')
-rw-r--r--src/backend/utils/adt/datetime.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/utils/adt/datetime.c b/src/backend/utils/adt/datetime.c
index 49e93abe99a..83255fb1eb4 100644
--- a/src/backend/utils/adt/datetime.c
+++ b/src/backend/utils/adt/datetime.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.86 2001/12/30 23:09:41 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.87 2002/01/01 02:54:27 thomas Exp $
*
*-------------------------------------------------------------------------
*/
@@ -414,7 +414,7 @@ sgt
#if 0
syot
#endif
- {"t", TIME, DTK_TIME}, /* Filler for ISO time fields */
+ {"t", ISOTIME, DTK_TIME}, /* Filler for ISO time fields */
#if 0
taht
#endif
@@ -1353,7 +1353,7 @@ DecodeDateTime(char **field, int *ftype, int nf,
ptype = val;
break;
- case TIME:
+ case ISOTIME:
/* This is a filler field "t"
* indicating that the next field is time.
* Try to verify that this is sensible.
@@ -1909,7 +1909,7 @@ DecodeTimeOnly(char **field, int *ftype, int nf,
ptype = val;
break;
- case TIME:
+ case ISOTIME:
tmask = 0;
/***