Skip to content

Commit

Permalink
#2909 - [Hana] Replace HanaSqlLimitSqlLimiter with standard LimitOffs…
Browse files Browse the repository at this point in the history
…etSqlLimiter
  • Loading branch information
rbygrave committed Dec 1, 2022
1 parent c317092 commit 928db1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 36 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,13 @@
import io.ebean.annotation.PersistBatch;
import io.ebean.annotation.Platform;
import io.ebean.config.PlatformConfig;
import io.ebean.config.dbplatform.DatabasePlatform;
import io.ebean.config.dbplatform.DbPlatformType;
import io.ebean.config.dbplatform.DbType;
import io.ebean.config.dbplatform.IdType;
import io.ebean.config.dbplatform.SqlErrorCodes;
import io.ebean.config.dbplatform.*;

public class HanaPlatform extends DatabasePlatform {

public HanaPlatform() {
this.platform = Platform.HANA;
this.sqlLimiter = new HanaSqlLimiter();
this.sqlLimiter = new LimitOffsetSqlLimiter();
this.persistBatchOnCascade = PersistBatch.NONE;
this.supportsResultSetConcurrencyModeUpdatable = false;
this.historySupport = new HanaHistorySupport();
Expand Down

This file was deleted.

0 comments on commit 928db1f

Please sign in to comment.