We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 430aa6d commit 2fb7303Copy full SHA for 2fb7303
src/main/java/org/springframework/data/r2dbc/repository/query/ConditionFactory.java
@@ -239,7 +239,8 @@ private Upper(Expression expression) {
239
Assert.notNull(expression, "Expression must not be null!");
240
String functionArgument;
241
if (expression instanceof BindMarker) {
242
- functionArgument = expression instanceof Named ? ((Named) expression).getName() : expression.toString();
+ functionArgument = expression instanceof Named ? ((Named) expression).getName().getReference()
243
+ : expression.toString();
244
} else if (expression instanceof Column) {
245
functionArgument = "";
246
Table table = ((Column) expression).getTable();
0 commit comments