[patch] Bad name collision causes non functional method
-------------------------------------------------------
Key: DERBY-5052
URL: https://issues.apache.org/jira/browse/DERBY-5052
Project: Derby
Issue Type: Bug
Components: Tools
Affects Versions: 10.7.1.1
Reporter: Dave Brosius
Priority: Trivial
Fix For: 10.8.0.0
Attachments: bad_name_collision.diff
ijMultipleResultSetResult has this method
/**
* Create a ijResultImpl that represents multiple result set.
*/
public ijMultipleResultSetResult(List resultSets) throws SQLException {
resultSets = new ArrayList();
resultSets.addAll(resultSets);
}
due to the name collision, this does nothing... patch fixes with this.
prefixing.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira