Skip navigation links

MySQL Forums :: JDBC and Java :: Bug in patch that goes in 5.1.6?


Advanced Search

Bug in patch that goes in 5.1.6?
Posted by: Den Orlov ()
Date: July 24, 2008 09:42AM

Looks that ResultSetImpl.fastDateCreate():

protected synchronized Date fastDateCreate(Calendar cal, int year, int month, int day) {
if (this.useLegacyDatetimeCode) {
return TimeUtil.fastDateCreate(year, month, day, cal);
}

...

should be:

protected synchronized Date fastDateCreate(Calendar cal, int year, int month, int day) {
if (!this.useLegacyDatetimeCode) {
return TimeUtil.fastDateCreate(year, month, day, cal);
}

...

?

Options: ReplyQuote


Subject Written By Posted
Bug in patch that goes in 5.1.6? Den Orlov 07/24/2008 09:42AM


Sorry, you can't reply to this topic. It has been closed.