mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-08 20:24:46 +00:00
HHH-8072 - Fixing Sybase tests
(cherry picked from commit bd7840dd0fe6320e19a0acebbfd5156eca719a75)
This commit is contained in:
parent
4657d306fc
commit
57870f32bf
@ -30,6 +30,7 @@
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.MapKeyColumn;
|
||||
import javax.persistence.Table;
|
||||
|
||||
import org.hibernate.envers.Audited;
|
||||
@ -48,6 +49,7 @@ public class EmbeddableMapEntity {
|
||||
@Audited
|
||||
@ElementCollection
|
||||
@CollectionTable(name = "EmbMapEnt_map")
|
||||
@MapKeyColumn(nullable = false) // NOT NULL for Sybase
|
||||
private Map<String, Component3> componentMap;
|
||||
|
||||
public EmbeddableMapEntity() {
|
||||
|
@ -18,7 +18,7 @@ public class ItemId implements Serializable {
|
||||
private Integer version;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "producer")
|
||||
@JoinColumn(name = "producer", nullable = false) // NOT NULL for Sybase
|
||||
private Producer producer;
|
||||
|
||||
public ItemId() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user