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

(cherry picked from commit 9858d29b56b672d9a8ce4783d5a757d8f89da5e1)
This commit is contained in:
Gail Badner 2015-12-02 16:32:45 -08:00
parent 6cdfd93bec
commit 32b4087efc

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 static class EntityWithAttributeNamedSize {
public EntityWithAttributeNamedSize parent;
@OneToMany( mappedBy = "parent" )
public Set<EntityWithAttributeNamedSize> children;
@Column(name="`size`")
private String size;
}