-
Bug
-
Resolution: Done
-
Major
-
EAP 5.0.1.CR1, EAP_EWP 5.1.1 ER1
-
Release Notes
-
Workaround Exists
-
-
Regression
-
-
Documented as Known Issue
-
ON_QA
We are hitting issue in Sun JDK 1.6-u18 JVM which has been used to run this test.
Problem is caused by java.sql.Date.valueOf method. Following example code ends with java.lang.IllegalArgumentException on JDK 1.6-u18 but works fine on previous version of JVM.
public static void main(String[] args) {
java.sql.Date jsd = java.sql.Date.valueOf("1999-5-5");
System.out.println(jsd);
}