Skip to content

Commit

Permalink
change unit test for postgres jdbc upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Sep 11, 2010
1 parent 6b5f5f8 commit ccc2cf8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -246,7 +246,7 @@ private void massageExpectectedResultsForDialect(String[] values) {
}
if (values[10] != null && !(getDbDialect() instanceof OracleDbDialect)) {
int scale = 17;
if (getDbDialect() instanceof MySqlDbDialect || getDbDialect() instanceof PostgreSqlDbDialect) {
if (getDbDialect() instanceof MySqlDbDialect) {
scale = 16;
}
DecimalFormat df = new DecimalFormat("0.00####################################");
Expand Down

0 comments on commit ccc2cf8

Please sign in to comment.