HHH-6770 : Oracle reserved words used as column names
This commit is contained in:
parent
a6a366678a
commit
11d8a8617f
|
@ -1,5 +1,6 @@
|
||||||
package org.hibernate.ejb.test.util;
|
package org.hibernate.ejb.test.util;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
import javax.persistence.Column;
|
||||||
import javax.persistence.EmbeddedId;
|
import javax.persistence.EmbeddedId;
|
||||||
import javax.persistence.Entity;
|
import javax.persistence.Entity;
|
||||||
|
|
||||||
|
@ -21,6 +22,7 @@ public class Umbrella {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Column(name="fld_size")
|
||||||
public int getSize() {
|
public int getSize() {
|
||||||
return size;
|
return size;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue