|
test failure org.hibernate.test.generated.DefaultGeneratedValueTest on Sybase ASE 157 due to the fact that CURRENT_TIMESTAMP is not supported by ASE and can not be used as a default value for a column.
Need to skip the test for ASE. Need following before the class declaration in org.hibernate.test.generated.DefaultGeneratedValueTest.java
@SkipForDialect(value=SybaseDialect.class, strictMatching=false, comment="CURRENT_TIMESTAMP not supported as default value in ASE ")
|