mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
24.13.2015 a85be673b47f4dd6c1f9f7e5ec400ba7b89775b9
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/VLVIndex.java
@@ -591,8 +591,8 @@
         * the key.
         */
        SortValuesSet splitSortValuesSet = sortValuesSet.split(newSize / 2);
        txn.create(getName(), splitSortValuesSet.getKeyBytes(), splitSortValuesSet.toByteString()); // splitAfter
        txn.create(getName(), sortValuesSet.getKeyBytes(), sortValuesSet.toByteString()); // after
        txn.put(getName(), splitSortValuesSet.getKeyBytes(), splitSortValuesSet.toByteString()); // splitAfter
        txn.put(getName(), sortValuesSet.getKeyBytes(), sortValuesSet.toByteString()); // after
        if(logger.isTraceEnabled())
        {
@@ -610,7 +610,7 @@
      else
      {
        ByteString after = sortValuesSet.toByteString();
        txn.create(getName(), key, after);
        txn.put(getName(), key, after);
      }
      count.getAndAdd(newSize - oldSize);