-
Bug
-
Resolution: Obsolete
-
Major
-
None
-
None
-
None
-
None
Given an entry that dynamically adds field to the index, such as:
@Indexed public class DynamicPropertiesEntity { private final Map<String,String> properties = new HashMap<String, String>(); @Field(analyze=Analyze.YES, store=Store.YES) @FieldBridge(impl=StringKeyedMapBridge.class) public Map<String, String> getProperties() { return properties; } public DynamicPropertiesEntity set(String key, String value) { properties.put(key, value); return this; }
Ickle fails to resolve the fields during the query: org.infinispan.objectfilter.ParsingException:
ISPN028501: The type org.infinispan.query.dynamicexample.DynamicPropertiesEntity does not have an accessible property named 'field'.