I am getting the following warning from Hibernate 3.0.3
org.hibernate.hql.PARSER - *** WARNING: Keyword 'member' is being intepreted as an identifier due to: expecting IDENT, found 'member'
This seems to be triggered by a part of my package name. One of the mapping files that is giving me the problem is:
Code:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 2.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd" >
<hibernate-mapping>
<class name="au.com.emia.member.security.data.GroupClaimAcc" table="claim_acc" proxy="au.com.emia.member.security.data.GroupClaimAcc" mutable="false">
<id name="groupClaimId" column="id">
<generator class="identity" />
</id>
<property name="claimId" column="claim_id" />
<property name="groupId" column="security_group_id" />
<property name="access" column="access" />
<property name="cancelledDate" column="Cancelled_Date" type="au.com.emia.base.db.hibernate.JDateType" />
<property name="cancelledBy" column="Cancelled_By" />
<property name="createDate" column="Create_Date" type="au.com.emia.base.db.hibernate.JDateType" />
<property name="owner" column="Owner" />
</class>
<query name="GroupClaimAcc.by.groupIdClaimId">
FROM GroupClaimAcc gca
WHERE gca.claimId = :claimId
AND gca.groupId = :groupId
</query>
</hibernate-mapping>
Tracing through in debug mode appears to be choking on character 26 of the following line
Code:
FROM au.com.emia.member.security.data.GroupClaimAcc gca
^