Details
-
Bug
-
Status: Closed
-
Critical
-
Resolution: Fixed
-
2.0.0-M15
-
None
-
None
Description
Due to the way the ValueString.equals() method is implemented, we don't bypass the 'top' OC when storing the entryUUID vaue in the OC index :
for ( Value<?> value : objectClass )
{
if ( value.equals( SchemaConstants.TOP_OC ) )
...
public boolean equals( Object obj )
{
...
if ( !( obj instanceof StringValue ) )