Hello all,
There is bug in BasicRowProcessorTest unit-test.
When I'm running this test on my PC with Russian windows installed SimpleDateFormat fails to parse
"Sun Mar 14 15:19:15 MST 2004" because it is expecting to see russian words instead these english words.
To solve bug these lines:
private static final DateFormat datef =
new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy");need to be replaced by these lines:
private static final DateFormat datef =
new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", Locale.US);Best regards, Mikhail Krivoshein
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
