HHH-10296 : Fix more DB reserved words used by tests
This commit is contained in:
parent
2030aa70ee
commit
9858d29b56
|
@ -7,6 +7,7 @@
|
|||
package org.hibernate.test.hql;
|
||||
|
||||
import java.util.Set;
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.ManyToOne;
|
||||
|
@ -60,6 +61,7 @@ public class SizeAttributeReferenceTest extends BaseNonConfigCoreFunctionalTestC
|
|||
public EntityWithAttributeNamedSize parent;
|
||||
@OneToMany( mappedBy = "parent" )
|
||||
public Set<EntityWithAttributeNamedSize> children;
|
||||
@Column(name="`size`")
|
||||
private String size;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue