@@ -129,8 +129,8 @@ public class JdbcTemplate extends JdbcAccessor implements JdbcOperations {
129
129
private int queryTimeout = -1 ;
130
130
131
131
/**
132
- * If this variable is set to true then all results checking will be bypassed for any
133
- * callable statement processing. This can be used to avoid a bug in some older Oracle
132
+ * If this variable is set to true, then all results checking will be bypassed for any
133
+ * callable statement processing. This can be used to avoid a bug in some older Oracle
134
134
* JDBC drivers like 10.1.0.2.
135
135
*/
136
136
private boolean skipResultsProcessing = false ;
@@ -1177,7 +1177,7 @@ protected Map<String, Object> extractReturnedResults(CallableStatement cs,
1177
1177
else {
1178
1178
if (!this .skipUndeclaredResults ) {
1179
1179
String rsName = RETURN_RESULT_SET_PREFIX + (rsIndex + 1 );
1180
- SqlReturnResultSet undeclaredRsParam = new SqlReturnResultSet (rsName , new ColumnMapRowMapper ());
1180
+ SqlReturnResultSet undeclaredRsParam = new SqlReturnResultSet (rsName , getColumnMapRowMapper ());
1181
1181
if (logger .isDebugEnabled ()) {
1182
1182
logger .debug ("Added default SqlReturnResultSet parameter named '" + rsName + "'" );
1183
1183
}
@@ -1242,7 +1242,7 @@ protected Map<String, Object> extractOutputParameters(CallableStatement cs, List
1242
1242
}
1243
1243
else {
1244
1244
String rsName = outParam .getName ();
1245
- SqlReturnResultSet rsParam = new SqlReturnResultSet (rsName , new ColumnMapRowMapper ());
1245
+ SqlReturnResultSet rsParam = new SqlReturnResultSet (rsName , getColumnMapRowMapper ());
1246
1246
returnedResults .putAll (processResultSet ((ResultSet ) out , rsParam ));
1247
1247
if (logger .isDebugEnabled ()) {
1248
1248
logger .debug ("Added default SqlReturnResultSet parameter named '" + rsName + "'" );
0 commit comments