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?
July 24, 2008 09:42AM


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

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.