Cache keys must contain all primary key values.

This commit is contained in:
Greg Burd 2017-09-18 13:40:06 -04:00
parent f9ab9f91a1
commit 67dbb36194
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.helenus</groupId>
<artifactId>helenus-core</artifactId>
<version>2.0.38-SNAPSHOT</version>
<version>2.0.39-SNAPSHOT</version>
<packaging>jar</packaging>
<name>helenus</name>

View file

@ -193,7 +193,7 @@ public final class SelectOperation<E> extends AbstractFilterStreamOperation<E, S
if (filter != null) {
keys.add(filter.toString());
} else {
keys.add(prop.getColumnName() + "==?");
return null;
}
break;
default: