Re: small bug on 3-digit years in 9.2-dev - Mailing list pgsql-hackers

From Tom Lane
Subject Re: small bug on 3-digit years in 9.2-dev
Date
Msg-id 17058.1341242239@sss.pgh.pa.us
Whole thread Raw
In response to small bug on 3-digit years in 9.2-dev  (Marc Cousin <cousinmarc@gmail.com>)
List pgsql-hackers
Marc Cousin <cousinmarc@gmail.com> writes:
> While working on the "What's new in 9.2", I think I found a small bug:

Yeah, that code certainly looks wrong, thanks for the report!

>      /* Force 100-519 into the 2000's */
> -    else if (year >= 100 && year < 519)
> +    else if (year >= 100 && year <= 519)

I think "< 520" would be more in keeping with the adjacent coding.
        regards, tom lane


pgsql-hackers by date:

Previous
From: Thom Brown
Date:
Subject: Re: Event Triggers reduced, v1
Next
From: Ants Aasma
Date:
Subject: Re: [PATCH] Lazy hashaggregate when no aggregation is needed