org.hibernate.test.hql.SizeAttributeReferenceTest fails on oracle because there is a field name "size". By default the column is named "size", which is a reserved work on Oracle.
There are 2 options: 1) explicitly name the column "`size`"; 2) skip the test for Oracle.
It would be preferable to do 1). I know the "size" field is important to the test, but I'm not 100% sure if it's important for the column to be named "size" as well.
Steve Ebersole, which is the right way to go?
|