ADD: Db2 container support

This commit is contained in:
Roland Praml
2021-11-26 15:01:15 +01:00
parent 067f4bfdea
commit dfb1d6ab54
5 changed files with 71 additions and 5 deletions
@@ -20,8 +20,10 @@ public class DB2Platform extends DatabasePlatform {
public DB2Platform() {
super();
this.platform = Platform.DB2;
this.maxTableNameLength = 18;
this.maxConstraintNameLength = 18;
// Note: DB2 (at least LUW supports length up to 128)
// TOOD: Check if we need to introduce a new platform (DB2_LUW_11 ?)
this.maxTableNameLength = 128;
this.maxConstraintNameLength = 128;
this.truncateTable = "truncate table %s reuse storage ignore delete triggers immediate";
this.sqlLimiter = new Db2SqlLimiter();