mad commented on code in PR #11900:
URL: https://github.com/apache/lucene/pull/11900#discussion_r2689830749


##########
lucene/codecs/src/java/org/apache/lucene/codecs/bloom/FuzzySet.java:
##########
@@ -46,7 +46,9 @@ public class FuzzySet implements Accountable {
 
   public static final int VERSION_SPI = 1; // HashFunction used to be loaded 
through a SPI
   public static final int VERSION_START = VERSION_SPI;
-  public static final int VERSION_CURRENT = 2;
+  public static final int VERSION_MURMUR2 = 2;
+  private static final int VERSION_MULTI_HASH = 3;
+  public static final int VERSION_CURRENT = VERSION_MULTI_HASH;

Review Comment:
   Thanks for the detailed answer!
   
   This error occurs without any code changes. Exact versions 8.11.5 vs. 9.11.2
   
   I made changes related to the byte order, and the index opened. But since 
the hash function has changed, it will most likely not work correctly.
   
   I'll consider adding support for the older version.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to