HHH-12903 - Fix CommitFlushCollectionTest failing on Oracle.

This commit is contained in:
Chris Cranford 2018-08-10 13:33:08 -04:00 committed by Guillaume Smet
parent 1dd5eeb79d
commit 366698e229

View File

@ -71,6 +71,7 @@ public void setVersion(Long version) {
@Audited
@MappedSuperclass
public static class BaseDocument extends AbstractEntity {
@Column(name = "numberValue")
private String number;
private Date date;
@ -119,6 +120,7 @@ public DocumentA addLine(DocumentLineA line) {
@MappedSuperclass
public abstract static class BaseDocumentLine extends AbstractEntity {
@Column(name = "textValue")
private String text;
@Column(nullable = false)