Skip to content

Commit

Permalink
Fix size mapping issue on oracle. Checking in to see if other databas…
Browse files Browse the repository at this point in the history
…e platforms mind dealing with a BigInteger
  • Loading branch information
chenson42 committed Nov 30, 2012
1 parent 840c73b commit 5a80a48
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -74,4 +74,9 @@ public String getDefaultCatalog() {
return null;
}

@Override
protected Number parseIntegerObjectValue(String value) {
return Integer.parseInt(value);
}

}

0 comments on commit 5a80a48

Please sign in to comment.