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

View File

@ -96,6 +96,7 @@ protected boolean shouldEmulateFetchClause(QueryPart queryPart) {
&& 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 @@ protected void visitInsertStatementOnly(InsertSelectStatement statement) {
}
}
@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" );