Skip to content

Commit

Permalink
0006188: Add boolean data type support for Oracle 23c
Browse files Browse the repository at this point in the history
  • Loading branch information
Catherine Quamme authored and Catherine Quamme committed Jan 25, 2024
1 parent db538c4 commit bbd1a9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ public String getSqlType(Column column) {
return "TIMESTAMP(" + column.getSizeAsInt() + ") WITH LOCAL TIME ZONE";
} else {
if (column.getMappedTypeCode() == Types.BOOLEAN && this instanceof Oracle23DdlBuilder) {
return "BOOLEAN"; // 0006188: Add boolean data type support for Oracle 23c
return "BOOLEAN";
}
// This check was added because Oracle has no native support for the following types. Note: In Oracle 23 they added support for BOOLEAN
if ((column.getMappedTypeCode() == Types.BIGINT || column
Expand Down

0 comments on commit bbd1a9f

Please sign in to comment.