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
Copy file name to clipboardExpand all lines: spring-data-relational/src/main/java/org/springframework/data/relational/core/sql/DefaultSelectBuilder.java
+18
Original file line number
Diff line number
Diff line change
@@ -325,6 +325,18 @@ public SelectOnConditionComparison on(Expression column) {
Copy file name to clipboardExpand all lines: spring-data-relational/src/main/java/org/springframework/data/relational/core/sql/SelectBuilder.java
+11
Original file line number
Diff line number
Diff line change
@@ -501,6 +501,17 @@ interface SelectOn {
501
501
* @see Table#column(String)
502
502
*/
503
503
SelectOnConditionComparisonon(Expressioncolumn);
504
+
505
+
/**
506
+
* Declare a join condition in one step.
507
+
*
508
+
* Using conditions allows more flexibility in comparison to {@link #on(Expression)} which only allows for equality comparisons chained together with `AND`.
Copy file name to clipboardExpand all lines: spring-data-relational/src/test/java/org/springframework/data/relational/core/sql/render/SelectRendererUnitTests.java
0 commit comments