-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Done
-
Affects Version/s: EAP 5.0.1.CR1, EAP_EWP 5.1.1 ER1
-
Fix Version/s: EAP 5.0.1.CR2, EAP_EWP 5.1.1 ER2, EAP_EWP 5.1.2
-
Component/s: TCK
-
Labels:
-
Affects:Release Notes
-
Workaround:Workaround Exists
-
Workaround Description:
-
Affects Testing:Regression
-
Release Notes Text:
-
Release Notes Docs Status:Documented as Known Issue
-
Docs QE Status: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); }