Skip to content

Commit

Permalink
TEIID-3394 fix for null
Browse files Browse the repository at this point in the history
  • Loading branch information
shawkins committed Mar 19, 2015
1 parent 77d2d39 commit b160fc0
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -541,6 +541,8 @@ private void getContent(ResultSet rs, PgColInfo col, int column) throws SQLExcep
}
if (o != null) {
writer.append(o.toString());
} else {
writer.append('0');
}
}
}
Expand Down

0 comments on commit b160fc0

Please sign in to comment.