Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
0001801: DbExport does not handle timestamp(9) on Oracle
  • Loading branch information
erilong committed Jul 10, 2014
1 parent 804282f commit 69379bd
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -401,7 +401,7 @@ public String buildDynamicSql(BinaryEncoding encoding, Row row,
for (int i = 0; i < columnsToProcess.size(); i++) {
Column column = columnsToProcess.get(i);
String name = column.getName();
int type = column.getJdbcTypeCode();
int type = column.getMappedTypeCode();

if (row.get(name) != null) {
if (column.isOfTextType()) {
Expand Down

0 comments on commit 69379bd

Please sign in to comment.