HHH-10296 : Fix more DB reserved words used by tests

This commit is contained in:
Gail Badner 2015-12-02 16:32:45 -08:00
parent 2030aa70ee
commit 9858d29b56
1 changed files with 2 additions and 0 deletions

View File

@ -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;
}