HHH-6770 : Oracle reserved words used as column names

This commit is contained in:
Gail Badner 2011-10-26 14:42:17 -07:00
parent a6a366678a
commit 11d8a8617f
1 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
package org.hibernate.ejb.test.util;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.EmbeddedId;
import javax.persistence.Entity;
@ -21,6 +22,7 @@ public class Umbrella {
this.id = id;
}
@Column(name="fld_size")
public int getSize() {
return size;
}