Robin Sander commented on an issue
Hibernate ORM / Bug HHH-6024
NPE in CastFunction when casting a field named "date" to type "date" in HQL

In Hibernate version "3.6.2.Final" when casting a field named "date" to type "date":

  SELECT entity FROM DateEntity AS entity WHERE CAST(entity.date AS date) = ?

we encounter a NullPointerException in CastFunction:

  java.lang.NullPointerException
    at org.hibernate.dialect.function.CastFunction.render(CastFunction.java:56)
    at org.hibernate.hql...