HHH-17696 added missing @Override to AltibaseSqlAstTranslator.java
This commit is contained in:
parent
7b0e511577
commit
98907e1ad4
|
@ -96,6 +96,7 @@ public class AltibaseSqlAstTranslator<T extends JdbcOperation> extends AbstractS
|
|||
&& getDialect().supportsWindowFunctions() && !isRowsOnlyFetchClauseType( queryPart );
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void renderTableGroupJoin(TableGroupJoin tableGroupJoin, List<TableGroupJoin> tableGroupJoinCollector) {
|
||||
// Use join instead because Altibase does not support cross apply
|
||||
appendSql( WHITESPACE );
|
||||
|
@ -159,6 +160,7 @@ public class AltibaseSqlAstTranslator<T extends JdbcOperation> extends AbstractS
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void renderMergeUpdateClause(List<Assignment> assignments, Predicate wherePredicate) {
|
||||
// In Altibase, where condition in merge can be placed next to the set clause."
|
||||
appendSql( " then update" );
|
||||
|
|
Loading…
Reference in New Issue