Skip to content

Commit

Permalink
Consider sanitised names when copying parameter sources.
Browse files Browse the repository at this point in the history
  • Loading branch information
IAM20 committed Sep 13, 2024
1 parent 075fb74 commit 4bbca07
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ void addAll(SqlIdentifierParameterSource others) {

for (SqlIdentifier identifier : others.getIdentifiers()) {

String name = identifier.getReference();
String name = BindParameterNameSanitizer.sanitize(identifier.getReference());
addValue(identifier, others.getValue(name), others.getSqlType(name));
}
}
Expand Down

0 comments on commit 4bbca07

Please sign in to comment.