Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[birt-dev] Checkin: fix 122584: Cascading parameter values can't be displayed properly in html viewer.

- Summary:
Fix 122584: Cascading parameter values can't be displayed properly in html viewer.


- Bugzilla Bug (s) Resolved:
122584: Cascading parameter values can't be displayed properly in html viewer.


- Description:
This bug is caused by incorrect conversion for data type of java.sql.Date. In old implementation, it first checked whether the objective data type of conversion is supported and the check operation for Date type was “toTypeClass==java.util.Date.Class”. So it can not convert for java.sqlDate type. Now it is changed to “java.Util.Date.class.isAssignableFrom( toTypeClass )”.


- Tests Description:
Junit Test


- Files Edited:
/org.eclipse.birt.core/src/org/eclipse/birt/core/data/DataTypeUtil.java

/org.eclipse.birt.core/src/org/eclipse/birt/core/i18n/Messages.properties

/org.eclipse.birt.core/test/org/eclipse/birt/core/data/DataTypeUtilTest.java


- Files Added:

N/A

 

- Notes to Build Team:
N/A


- Notes to Developers:
N/A


- Notes to QA: 
 

N/A

 

- Notes to Documentation:  
N/A

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 


Back to the top