unfortunately I am not able to set this to true in our database. As far as I understand ansinull: If set to true one has to use is not null. If set to false one can use is not null or != null. Example
So I understand that the SybaseASEDialect converts the HQL to is not null or != null depending on ansinull. But why does it add ADDITIONAL null checks when the parameter is false? How can I write “select * from table where column = null” with ansinull=false in HQL? |