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

fdorson
13.41.2008 9381f1aa6dac9731fa688dfbebdfdf4955abc317
opends/src/server/org/opends/server/replication/plugin/HistoricalCsnOrderingMatchingRule.java
@@ -133,7 +133,18 @@
  public ByteString normalizeValue(ByteString value)
  {
    String[] token = value.stringValue().split(":", 3);
    return new ASN1OctetString(token[1]);
    /* Change the format of the value to index and start
     * with the serverId. In that manner, the search response
     * time is optimised for a particulare serverId.
     * The format of the key is now :
     * serverId + timestamp + seqNum
     */
    String timestamp = token[1].substring(0,16);
    String serverId = token[1].substring(16,20);
    String seqNumber = token[1].substring(20, 28);
    return new ASN1OctetString(serverId + timestamp + seqNumber);
  }
  /**