HHH-11536 - Fix unit tests failing on Oracle

This commit is contained in:
Andrea Boriero 2017-03-02 13:56:59 +00:00
parent 633deeb75e
commit dd895c78b6
1 changed files with 1 additions and 2 deletions

View File

@ -66,7 +66,7 @@ public class LazyInCacheTestTask extends AbstractEnhancerTestTask {
protected void cleanup() {
}
@Entity(name = "Order")
@Entity(name = "Orders")
@Cache( usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE )
public static class Order {
@ -81,7 +81,6 @@ public class LazyInCacheTestTask extends AbstractEnhancerTestTask {
List<Tag> tags = new ArrayList<>();
@Basic( fetch = FetchType.LAZY )
@Column
@Type( type = "org.hibernate.type.BinaryType" )
private byte[] data;