Commit 97e7f635 authored by Bruce Momjian's avatar Bruce Momjian

Improve zero-year comments.

parent 07d7f475
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/datetime.c,v 1.201 2009/03/17 18:35:26 momjian Exp $ * $PostgreSQL: pgsql/src/backend/utils/adt/datetime.c,v 1.202 2009/03/17 18:39:39 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -2264,7 +2264,7 @@ ValidateDate(int fmask, bool is2digits, bool bc, struct pg_tm * tm) ...@@ -2264,7 +2264,7 @@ ValidateDate(int fmask, bool is2digits, bool bc, struct pg_tm * tm)
} }
else if (is2digits) else if (is2digits)
{ {
/* allow 2-digit input for 1970-2069 AD; '0' or '00' is allowed */ /* process 1 or 2-digit input as 1970-2069 AD, allow '0' and '00' */
if (tm->tm_year < 0) /* just paranoia */ if (tm->tm_year < 0) /* just paranoia */
return DTERR_FIELD_OVERFLOW; return DTERR_FIELD_OVERFLOW;
if (tm->tm_year < 70) if (tm->tm_year < 70)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment