I am trying to do a count(distinct coalesce(value, value)) and I am getting a syntax exception. Is this meant to be supported or not going to happen? Here is a simple example of what I'm doing
Quote:
select count(distinct coalesce(ord.externalOrderNumber, ord.orderNumber)) from Order ord
This is throwing:
Quote:
org.hibernate.hql.ast.QuerySyntaxException: expecting CLOSE
Please keep in mind this is not the real world example since the order table will be distinct. What I'm doing a distinct on is off of a join and I wanted to keep this post simple.