DBZ-4880 Correctly interpret NCLOB in Oracle DDL parser

This commit is contained in:
Chris Cranford 2022-03-17 12:40:13 -04:00 committed by Gunnar Morling
parent c90993a652
commit 45648632f3

View File

@ -272,6 +272,11 @@ else if (ctx.native_datatype_element().CLOB() != null) {
.jdbcType(Types.CLOB)
.type("CLOB");
}
else if (ctx.native_datatype_element().NCLOB() != null) {
columnEditor
.jdbcType(Types.NCLOB)
.type("NCLOB");
}
else if (ctx.native_datatype_element().RAW() != null) {
columnEditor
.jdbcType(OracleTypes.RAW)