Skip to content

Commit

Permalink
0004464: Failed to load batch ORA-00932: inconsistent datatypes:
Browse files Browse the repository at this point in the history
expected - got CLOB
  • Loading branch information
erilong committed Jul 2, 2020
1 parent b6fc9dd commit 3aab744
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -104,8 +104,7 @@ public String getDefaultSchema() {

@Override
public boolean canColumnBeUsedInWhereClause(Column column) {
String jdbcTypeName = column.getJdbcTypeName();
return !column.isOfBinaryType() || "RAW".equals(jdbcTypeName);
return !isLob(column.getJdbcTypeCode());
}

@Override
Expand Down

0 comments on commit 3aab744

Please sign in to comment.