[Bug 676] milliseconds bug in java.sql.Timestamp
bugzilla-daemon at icedtea.classpath.org
bugzilla-daemon at icedtea.classpath.org
Wed Mar 23 12:59:56 PDT 2011
http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=676
--- Comment #3 from Omair Majid <omajid at redhat.com> 2011-03-23 19:59:55 ---
The test case and the description you posted don't refer to the same issue. The
test case checks if Date.before(Timestamp) works properly. In your description
you talk about Timestamp.compareTo(Date) being broken.
The issue in Timestamp.compareTo() was fixed in OpenJDK7. I have asked to
backport it to OpenJDK6 and IcedTea6.
The issue in the test case still exists. As the javadoc says: "Only integral
seconds are stored in the java.util.Date component. The fractional seconds -
the nanos - are separate." Timestamp zeros out the milliseconds before storing
it in Date (the millis are added to nanos). So a test value of 1300286601055 is
compared to (say) 1300286601000 (and not something with millisecond precision
like 1300286601334).
--
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the distro-pkg-dev
mailing list