Skip to content

Commit

Permalink
Merge pull request #247 from hito4t/oracle_numeric
Browse files Browse the repository at this point in the history
Support java.sql.Types.NUMERIC in Oracle OCI
  • Loading branch information
hito4t committed Mar 29, 2019
2 parents e8c9095 + 5f6e17d commit 0a1ee4b
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -101,6 +101,7 @@ public void prepare(TableIdentifier loadTable, JdbcSchema insertSchema) throws S
break;

case Types.DECIMAL:
case Types.NUMERIC:
// sign + size
int size = 1 + insertColumn.getSizeTypeParameter();
if (insertColumn.getSizeTypeParameter() > 0) {
Expand Down

0 comments on commit 0a1ee4b

Please sign in to comment.