I ll try to upload a full unit test in next few days. Mean while, I try to narrow down the issue, it boils down to having a classBridge on a associated entity (indexed via @indexEmbedded). e.g
Code:
@Entity @Indexed
Class Person{
@IndexedEmbedded
private PersonDetails details;
}
@ClassBridge(
name = "personDetailsContents",
index = Index.TOKENIZED,
store = Store.YES,
impl = PersonDetailsClassBridge.class
)
public class PersonDetails{
}
when I comment ClassBridge and remove the details.personDetailsContents from the query, it works fine. What could be wrong with this? Is there any way to disable classBridge?