You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rename "null handling" to "null precedence".
This is somewhat inconsistent with commons null handling, but more descriptive.
Minor formatting.
Original pull request #1156
See #821
Copy file name to clipboardExpand all lines: spring-data-jdbc/src/test/java/org/springframework/data/jdbc/core/JdbcAggregateTemplateIntegrationTests.java
Copy file name to clipboardExpand all lines: spring-data-relational/src/main/java/org/springframework/data/relational/core/dialect/AbstractDialect.java
+4-4
Original file line number
Diff line number
Diff line change
@@ -107,14 +107,14 @@ static class DialectSelectRenderContext implements SelectRenderContext {
Copy file name to clipboardExpand all lines: spring-data-relational/src/main/java/org/springframework/data/relational/core/dialect/OrderByNullPrecedence.java
+8-7
Original file line number
Diff line number
Diff line change
@@ -21,21 +21,22 @@
21
21
* Represents how the {@link Sort.NullHandling} option of an {@code ORDER BY} sort expression is to be evaluated.
22
22
*
23
23
* @author Chirag Tailor
24
+
* @since 2.4
24
25
*/
25
-
publicinterfaceOrderByNullHandling {
26
+
publicinterfaceOrderByNullPrecedence {
26
27
/**
27
-
* An {@link OrderByNullHandling} that can be used for databases conforming to the SQL standard which uses
28
+
* An {@link OrderByNullPrecedence} that can be used for databases conforming to the SQL standard which uses
28
29
* {@code NULLS FIRST} and {@code NULLS LAST} in {@code ORDER BY} sort expressions to make null values appear before
Copy file name to clipboardExpand all lines: spring-data-relational/src/main/java/org/springframework/data/relational/core/dialect/SqlServerDialect.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -158,7 +158,7 @@ public InsertRenderContext getInsertRenderContext() {
Copy file name to clipboardExpand all lines: spring-data-relational/src/main/java/org/springframework/data/relational/core/sql/render/OrderByClauseVisitor.java
Copy file name to clipboardExpand all lines: spring-data-relational/src/main/java/org/springframework/data/relational/core/sql/render/SelectRenderContext.java
Copy file name to clipboardExpand all lines: spring-data-relational/src/test/java/org/springframework/data/relational/core/dialect/PostgresDialectRenderingUnitTests.java
0 commit comments