我正在尝试从 java 执行以下 HQL 查询。
"SELECT ac.accountNumberInt, ag.ext, sum (ext) as exta from CustomerCapital ag, Account ac where customerExt =:customerExt and observationPeriod in (:observationPeriod) group by ac.accountNumberInt, ag.ext";
它抛出以下异常。
java.lang.NullPointerException:在 org.hibernate.dialect.Dialect$3.getReturnType(Dialect.java:125) ~[hibernate-core.jar!/:3.3.1.GA] 在 org.hibernate.hql.ast。 util.SessionFactoryHelper.findFunctionReturnType(SessionFactoryHelper.java:405) ~[hibernate-core.jar!/:3.3.1.GA]
任何人都可以请指导我。