HHH-17696 added missing @Override to AltibaseSqlAstTranslator.java

This commit is contained in:
yjpark 2024-02-05 18:01:02 +09:00 committed by Christian Beikov
parent 7b0e511577
commit 98907e1ad4
1 changed files with 2 additions and 0 deletions

View File

@ -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" );