I have a problem with the mapping of Oracle Float double precision datatype to Java Double datatype. The hibernate schema validator seems to fail when the Java Double dataty
If you are using Annotation method, you need to declare column type as below for the field.
@Column(name = "PERFORMANCE", columnDefinition = "FLOAT(5,2)") private double performance;