HHH-13658 fix failing test on Oracle
This commit is contained in:
parent
22f858c68b
commit
d213d675ce
|
@ -6,6 +6,7 @@
|
|||
*/
|
||||
package org.hibernate.orm.test.mapping.lazytoone;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.ManyToOne;
|
||||
|
@ -24,6 +25,7 @@ import static org.hibernate.annotations.LazyToOneOption.NO_PROXY;
|
|||
public class Flight {
|
||||
@Id
|
||||
private Integer id;
|
||||
@Column(name = "flight_number")
|
||||
private String number;
|
||||
|
||||
@ManyToOne( fetch = LAZY )
|
||||
|
|
Loading…
Reference in New Issue