Skip to content

Commit aa29081

Browse files
alim-nmp911de
authored andcommitted
Support NullHandling in QueryUtils.
Closes #3811 Signed-off-by: Alim <[email protected]>
1 parent 2e40704 commit aa29081

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

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

+8-1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@
8585
* @author Pranav HS
8686
* @author Eduard Dudar
8787
* @author Yanming Zhou
88+
* @author Alim Naizabek
8889
*/
8990
public abstract class QueryUtils {
9091

@@ -428,7 +429,13 @@ static Set<String> getFunctionAliases(String query) {
428429
}
429430

430431
private static String toJpaDirection(Order order) {
431-
return order.getDirection().name().toLowerCase(Locale.US);
432+
String direction = order.getDirection().name().toLowerCase(Locale.US);
433+
if (order.getNullHandling() == Sort.NullHandling.NULLS_FIRST) {
434+
direction += " nulls first";
435+
} else if (order.getNullHandling() == Sort.NullHandling.NULLS_LAST) {
436+
direction += " nulls last";
437+
}
438+
return direction;
432439
}
433440

434441
/**

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/query/DefaultQueryEnhancerUnitTests.java

+10
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,14 @@ void shouldApplySorting() {
4848

4949
assertThat(sql).isEqualTo("SELECT e FROM Employee e order by e.foo asc, e.bar asc");
5050
}
51+
52+
@Test
53+
void shouldApplySortingWithNullHandling() {
54+
55+
QueryEnhancer enhancer = createQueryEnhancer(DeclaredQuery.of("SELECT e FROM Employee e", true));
56+
57+
String sql = enhancer.applySorting(Sort.by(Sort.Order.asc("foo").nullsFirst(), Sort.Order.asc("bar").nullsLast()));
58+
59+
assertThat(sql).isEqualTo("SELECT e FROM Employee e order by e.foo asc nulls first, e.bar asc nulls last");
60+
}
5161
}

0 commit comments

Comments
 (0)