[
http://opensource.atlassian.com/projects/hibernate/browse/HSEARCH-937?pag...
]
Emmanuel Bernard updated HSEARCH-937:
-------------------------------------
Fix Version/s: (was: 4.1)
Search fails when loading associated entity with different ID type
------------------------------------------------------------------
Key: HSEARCH-937
URL:
http://opensource.atlassian.com/projects/hibernate/browse/HSEARCH-937
Project: Hibernate Search
Issue Type: Bug
Affects Versions: 3.4.1.Final, 4.0.0.Beta2
Reporter: Cody Lerum
I have run into an issue after moving from Search 3.1 to 3.4.1 and later to 4.0.Beta2.
The issue is that when loading an result entity from a hibernate search query the load
fails if the result entity has an associated entity where the id types are dissimilar.
For example if I have Company with an id type of Long and employee with id type of
Integer and I search and the result is the company entity my search throws the following
stack trace.
{code}
caused by: java.lang.ClassCastException: java.lang.Long cannot be cast to
java.lang.Integer
at
org.hibernate.type.descriptor.java.IntegerTypeDescriptor.unwrap(IntegerTypeDescriptor.java:36)
[hibernate-core-4.0.0.CR2.jar:4.0.0.CR2]
at
org.hibernate.type.descriptor.sql.IntegerTypeDescriptor$1.doBind(IntegerTypeDescriptor.java:57)
[hibernate-core-4.0.0.CR2.jar:4.0.0.CR2]
at org.hibernate.type.descriptor.sql.BasicBinder.bind(BasicBinder.java:82)
[hibernate-core-4.0.0.CR2.jar:4.0.0.CR2]
at
org.hibernate.type.AbstractStandardBasicType.nullSafeSet(AbstractStandardBasicType.java:305)
[hibernate-core-4.0.0.CR2.jar:4.0.0.CR2]
at
org.hibernate.type.AbstractStandardBasicType.nullSafeSet(AbstractStandardBasicType.java:300)
[hibernate-core-4.0.0.CR2.jar:4.0.0.CR2]
at org.hibernate.loader.Loader.bindPositionalParameters(Loader.java:1909)
[hibernate-core-4.0.0.CR2.jar:4.0.0.CR2]
at org.hibernate.loader.Loader.bindParameterValues(Loader.java:1880)
[hibernate-core-4.0.0.CR2.jar:4.0.0.CR2]
at org.hibernate.loader.Loader.prepareQueryStatement(Loader.java:1758)
[hibernate-core-4.0.0.CR2.jar:4.0.0.CR2]
at org.hibernate.loader.Loader.doQuery(Loader.java:828)
[hibernate-core-4.0.0.CR2.jar:4.0.0.CR2]
at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:289)
[hibernate-core-4.0.0.CR2.jar:4.0.0.CR2]
at org.hibernate.loader.Loader.doList(Loader.java:2449)
[hibernate-core-4.0.0.CR2.jar:4.0.0.CR2]
at org.hibernate.loader.Loader.doList(Loader.java:2435)
[hibernate-core-4.0.0.CR2.jar:4.0.0.CR2]
at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2276)
[hibernate-core-4.0.0.CR2.jar:4.0.0.CR2]
at org.hibernate.loader.Loader.list(Loader.java:2271)
[hibernate-core-4.0.0.CR2.jar:4.0.0.CR2]
at org.hibernate.loader.criteria.CriteriaLoader.list(CriteriaLoader.java:121)
[hibernate-core-4.0.0.CR2.jar:4.0.0.CR2]
at org.hibernate.internal.SessionImpl.list(SessionImpl.java:1484)
[hibernate-core-4.0.0.CR2.jar:4.0.0.CR2]
at org.hibernate.internal.CriteriaImpl.list(CriteriaImpl.java:373)
[hibernate-core-4.0.0.CR2.jar:4.0.0.CR2]
at
org.hibernate.search.query.hibernate.impl.CriteriaObjectsInitializer.initializeObjects(CriteriaObjectsInitializer.java:107)
[hibernate-search-orm-4.0.0.Beta2.jar:]
at
org.hibernate.search.query.hibernate.impl.QueryLoader.executeLoad(QueryLoader.java:91)
[hibernate-search-orm-4.0.0.Beta2.jar:]
at org.hibernate.search.query.hibernate.impl.AbstractLoader.load(AbstractLoader.java:72)
[hibernate-search-orm-4.0.0.Beta2.jar:]
at
org.hibernate.search.query.hibernate.impl.FullTextQueryImpl.list(FullTextQueryImpl.java:211)
[hibernate-search-orm-4.0.0.Beta2.jar:]
at
org.hibernate.search.jpa.impl.FullTextQueryImpl.getResultList(FullTextQueryImpl.java:147)
[hibernate-search-orm-4.0.0.Beta2.jar:]
at com.domain.search.SearchUtil.search(SearchUtil.java:55) [classes:]
{code}
--
This message is automatically generated by JIRA.
For more information on JIRA, see:
http://www.atlassian.com/software/jira