Add ExportUtil and associated utilities for exporting tables to flat
files (thanks to F. Gerbig).
</action>
+ <action dev="jahlborn" type="fix" issue="3011084">
+ Fix some places where columns names were not being handled
+ case-insensitively.
+ </action>
</release>
<release version="1.2.0" date="2010-04-18">
<action dev="bhamail" type="update" issue="1451628">
String fromName = (String)row.get(REL_COL_FROM_TABLE);
String toName = (String)row.get(REL_COL_TO_TABLE);
- if(fromTable.getName().equals(fromName) &&
- toTable.getName().equals(toName))
+ if(fromTable.getName().equalsIgnoreCase(fromName) &&
+ toTable.getName().equalsIgnoreCase(toName))
{
String relName = (String)row.get(REL_COL_NAME);
// info for this relationship
Relationship rel = null;
for(Relationship tmp : relationships) {
- if(tmp.getName().equals(relName)) {
+ if(tmp.getName().equalsIgnoreCase(relName)) {
rel = tmp;
break;
}
*/
public Column getColumn(String name) {
for(Column column : _columns) {
- if(column.getName().equals(name)) {
+ if(column.getName().equalsIgnoreCase(name)) {
return column;
}
}
*/
public Index getIndex(String name) {
for(Index index : _indexes) {
- if(index.getName().equals(name)) {
+ if(index.getName().equalsIgnoreCase(name)) {
return index;
}
}