Commit 07d7f475 authored by Bruce Momjian's avatar Bruce Momjian

Document that datetime year '0' is considered in a recent century, not

just '00'.
parent 5e49291e
......@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/datetime.c,v 1.200 2009/01/01 17:23:49 momjian Exp $
* $PostgreSQL: pgsql/src/backend/utils/adt/datetime.c,v 1.201 2009/03/17 18:35:26 momjian Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -2264,7 +2264,7 @@ ValidateDate(int fmask, bool is2digits, bool bc, struct pg_tm * tm)
}
else if (is2digits)
{
/* allow 2-digit input for 1970-2069 AD; 00 is allowed */
/* allow 2-digit input for 1970-2069 AD; '0' or '00' is allowed */
if (tm->tm_year < 0) /* just paranoia */
return DTERR_FIELD_OVERFLOW;
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