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
Copy file name to clipboardExpand all lines: spring-data-relational/src/main/java/org/springframework/data/relational/core/sql/SelectBuilder.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -503,13 +503,13 @@ interface SelectOn {
503
503
SelectOnConditionComparisonon(Expressioncolumn);
504
504
505
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`.
506
+
* Declare a join {@link Condition condition} in one step. Using conditions allows more flexibility in comparison to
507
+
* {@link #on(Expression)} which only allows for equality comparisons chained together with {@code AND}.
Copy file name to clipboardExpand all lines: spring-data-relational/src/test/java/org/springframework/data/relational/core/sql/render/SelectRendererUnitTests.java
"SELECT COUNT(\"my_table\".*) AS counter, \"my_table\".\"reserved_keyword\" FROM \"my_table\" JOIN \"join_table\" ON \"my_table\".source = \"join_table\".target");
0 commit comments