In {{ArrayBridgeTest}} two values are added for the property "numericNullIndexed" (see [ArrayBridgeTestEntity.java#L95|https://github.com/hibernate/hibernate-search/blob/master/orm/src/test/java/org/hibernate/search/test/bridge/ArrayBridgeTestEntity.java#L95]). Three fields end up in the document, though:
* two fields named "numericNullIndexed" (which makes sense to me) * one field named "embeddedNum" (which seems odd)
That last field should not be added.
Also we may raise warnings for properties given via {{@IndexedEmbedded}} which are ignored for element collections of basic types.
|