Skip to content

Commit

Permalink
0005078: Tibero won't update table with LOB when missing PK
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Aug 25, 2021
1 parent dfabeb6 commit 16291df
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -66,7 +66,7 @@ public String getDefaultSchema() {
@Override
public boolean canColumnBeUsedInWhereClause(Column column) {
String jdbcTypeName = column.getJdbcTypeName();
return !column.isOfBinaryType() || "RAW".equals(jdbcTypeName);
return !(isLob(column.getJdbcTypeCode()) || column.isOfBinaryType() || "RAW".equals(jdbcTypeName));
}

@Override
Expand Down

0 comments on commit 16291df

Please sign in to comment.