Fixed
Details
Assignee
Brett MeyerBrett MeyerReporter
Mahesh GadgilMahesh GadgilComponents
Fix versions
Priority
Major
Details
Details
Assignee
Brett Meyer
Brett MeyerReporter
Mahesh Gadgil
Mahesh GadgilComponents
Fix versions
Priority
Created May 23, 2014 at 10:18 PM
Updated May 5, 2022 at 10:41 AM
Resolved May 5, 2022 at 10:41 AM
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");