Skip to content

Commit

Permalink
0004709: DB2 zOS uses long varchar instead of clobs
Browse files Browse the repository at this point in the history
  • Loading branch information
jumpmind-josh committed Dec 18, 2020
1 parent 1e97be2 commit 6f56d4e
Showing 1 changed file with 12 additions and 0 deletions.
@@ -0,0 +1,12 @@
package org.jumpmind.db.platform.db2;

import java.sql.Types;

import org.jumpmind.db.platform.DatabaseNamesConstants;

public class Db2zOsDdlBuilder extends Db2DdlBuilder {
public Db2zOsDdlBuilder() {
this.databaseName = DatabaseNamesConstants.DB2ZOS;
databaseInfo.addNativeTypeMapping(Types.LONGVARCHAR, "CLOB", Types.CLOB);
}
}

0 comments on commit 6f56d4e

Please sign in to comment.