Bug in patch that goes in 5.1.6?
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);
}
...
?
|
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.
© 1995-2008 MySQL AB, 2008- Sun Microsystems, Inc.