We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 036e84e commit 0431105Copy full SHA for 0431105
src/main/java/org/mybatis/dynamic/sql/select/function/OperatorFunction.java
@@ -50,7 +50,7 @@ protected OperatorFunction<T> copy() {
50
public String renderWithTableAlias(TableAliasCalculator tableAliasCalculator) {
51
String paddedOperator = " " + operator + " "; //$NON-NLS-1$ //$NON-NLS-2$
52
53
- // note - the cast below is added for a type inference bug in the Java9 compiler.
+ // note - the cast below is added for a type inference issues in some compilers
54
return Stream.of(Stream.of((BasicColumn) column), Stream.of(secondColumn), subsequentColumns.stream())
55
.flatMap(Function.identity())
56
.map(column -> column.renderWithTableAlias(tableAliasCalculator))
0 commit comments