Details
-
Bug
-
Status: Resolved
-
Low
-
Resolution: Fixed
-
None
-
None
-
None
-
Low
Description
JdbcDate.getString(ByteBuffer) makes use of a static SimpleDateFormat
static final SimpleDateFormat FORMATTER = new SimpleDateFormat(DEFAULT_FORMAT);
SimpleDateFormat is not thread safe, as it uses a field from parent class DateFormat
protected Calendar calendar;
to convert dates to calendars.