|
Test failure - org.hibernate.test.sql.hand.query.NativeSQLQueriesTest on Sybase ASE 157 due to the fact that 'count' is reserved word. Enclosing count with double quotes helps resolve the issue.
builder.setQuery("select count AS count from organization");
builder.setQuery("select count AS \"count\" from organization");
|