> -----Original Message-----
> From: Jason Pyeron
> Sent: Sunday, April 19, 2020 11:20 AM
> 
> I think I have found another corner case on the
> https://hibernate.atlassian.net/browse/HHH-9798 regression.
> 
> 
> 
<snip/>
> 
> 
> @OneToOne(fetch = FetchType.LAZY)
> 
>     @JoinTable(
> 
>         name = "ITEM_SHIPMENT", // Required!
> 
>         inverseJoinColumns =
> 
>             @JoinColumn(nullable = false,

Adding the nullable =false is correctly generating the join table with a not 
null, but is implying a optional=false on the OneToOne...

javax.persistence.PersistenceException: org.hibernate.PropertyValueException: 
not-null property references a null or transient value : XXXX.auction

> 
>                         unique = true)
> 
>     )
> 
>     protected Item auction;
> 
> 
> 
> Thoughts?
> 
> -Jason



_______________________________________________
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev

Reply via email to