Skip to content

Commit

Permalink
ISPN-3689: Preloading fails with JdbcBinaryCacheStore on DB2 (master)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Filotto authored and danberindei committed Apr 17, 2014
1 parent 4efcd36 commit b0967f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ public void setCacheName(String cacheName) {

public boolean isVariableLimitSupported() {
DatabaseType type = getDatabaseType();
return !(type == DatabaseType.DB2_390 || type == DatabaseType.SYBASE);
return !(type == DatabaseType.DB2 || type == DatabaseType.DB2_390 || type == DatabaseType.SYBASE);
}

public String getLoadSomeRowsSql() {
Expand Down

0 comments on commit b0967f3

Please sign in to comment.