Skip to content

Commit

Permalink
HHH-12843 Fix CreateDeleteTest and FlushIdGenTest with Oracle
Browse files Browse the repository at this point in the history
  • Loading branch information
simkam authored and gsmet committed Jul 20, 2018
1 parent 0caee98 commit 88a0153
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -19,15 +19,18 @@ public class RootEntity implements Serializable {

@Id
@GeneratedValue(strategy= GenerationType.IDENTITY)
@Column(name = "universalid")// "uid" is a keywork in Oracle
@Column(name = "universalid")// "uid" is a keyword in Oracle
private long uid;

public String description;

@javax.persistence.OneToMany(mappedBy = "linkedRoot")
private java.util.List<RelatedEntity> linkedEntities = new java.util.ArrayList<RelatedEntity>();

public long getUid() {
return uid;
}

public void setUid(long uid) {
this.uid = uid;
}
Expand Down

0 comments on commit 88a0153

Please sign in to comment.