Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
ahadas committed May 14, 2022
1 parent 04a18b6 commit c4475e1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,11 @@ private Map<String, Object> executeImpl(String procedureName,
private <T> Map<String, Object> executeImpl(String procedureName,
MapSqlParameterSource paramsSource, CallCreator callCreator, RowMapper<T> mapper) {
SimpleJdbcCall call = getCall(procedureName, callCreator, mapper);
if (outParamsMap.containsKey(procedureName)) {
/*if (outParamsMap.containsKey(procedureName)) {
Pair<String, Integer> pair = outParamsMap.get(procedureName);
String name = "v_" + pair.getFirst();
paramsSource.addValue(name, null);
}
}*/
return call.execute(paramsSource);
}

Expand Down

0 comments on commit c4475e1

Please sign in to comment.