Marc Cousin <cousinmarc(at)gmail(dot)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
In response to
pgsql-hackers by date
| Next: | From: Robert Haas | Date: 2012-07-02 15:19:39 |
| Subject: Re: pgsql: Make walsender more responsive. |
| Previous: | From: Thom Brown | Date: 2012-07-02 15:11:23 |
| Subject: Re: Event Triggers reduced, v1 |