Skip to content

Commit c6d1c95

Browse files
committed
Use 'lower' for all ignoreCase operations.
To avoid developers having to maintain multiples indices, use 'lower' for all ignoreCase operations (JSqlParser, QueryByExample, Querydsl). Resolves #2420.
1 parent aa52ffe commit c6d1c95

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

src/main/java/org/springframework/data/jpa/repository/query/JSqlParserUtils.java

+16
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,20 @@ public static Function getJSqlLower(String column) {
7272
.withName("lower") //
7373
.withParameters(lowerParamExpression);
7474
}
75+
76+
/**
77+
* Generates a upper function call, based on the {@code column}.
78+
*
79+
* @param column the non-empty column to use as param for upper
80+
* @return the generated upper function call
81+
*/
82+
public static Function getJSqlUpper(String column) {
83+
84+
List<Expression> expressions = Collections.singletonList(new Column(column));
85+
ExpressionList upperParamExpression = new ExpressionList(expressions);
86+
87+
return new Function() //
88+
.withName("upper") //
89+
.withParameters(upperParamExpression);
90+
}
7591
}

src/main/java/org/springframework/data/jpa/repository/query/QueryUtils.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -610,8 +610,8 @@ private static javax.persistence.criteria.Order toJpaOrder(Order order, From<?,
610610
Expression<?> expression = toExpressionRecursively(from, property);
611611

612612
if (order.isIgnoreCase() && String.class.equals(expression.getJavaType())) {
613-
Expression<String> lower = cb.lower((Expression<String>) expression);
614-
return order.isAscending() ? cb.asc(lower) : cb.desc(lower);
613+
Expression<String> upper = cb.lower((Expression<String>) expression);
614+
return order.isAscending() ? cb.asc(upper) : cb.desc(upper);
615615
} else {
616616
return order.isAscending() ? cb.asc(expression) : cb.desc(expression);
617617
}

0 commit comments

Comments
 (0)