This is an automated email from the ASF dual-hosted git repository.

imaxon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/asterixdb.git

commit a89c1aeaf19ad5ae2d42716f1ef51b1f5f5e0811
Author: Michael Blow <[email protected]>
AuthorDate: Wed Oct 1 07:29:25 2025 -0400

    [NO ISSUE][HYR][STO] Update FileMapManager serialVersionUID
    
    As the serialization for FileMapManager has changed incompatibly, update
    its serialVersionUID accordingly
    
    Ext-ref: MB-68501
    Change-Id: I8bf8cc0e2cce04ee12c153710304889b435dac9e
    Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/20430
    Tested-by: Michael Blow <[email protected]>
    Reviewed-by: Ian Maxon <[email protected]>
    Reviewed-by: Michael Blow <[email protected]>
---
 .../java/org/apache/hyracks/storage/common/file/FileMapManager.java   | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git 
a/hyracks-fullstack/hyracks/hyracks-storage-common/src/main/java/org/apache/hyracks/storage/common/file/FileMapManager.java
 
b/hyracks-fullstack/hyracks/hyracks-storage-common/src/main/java/org/apache/hyracks/storage/common/file/FileMapManager.java
index 5fa1e9c1c8..849a721d94 100644
--- 
a/hyracks-fullstack/hyracks/hyracks-storage-common/src/main/java/org/apache/hyracks/storage/common/file/FileMapManager.java
+++ 
b/hyracks-fullstack/hyracks/hyracks-storage-common/src/main/java/org/apache/hyracks/storage/common/file/FileMapManager.java
@@ -18,7 +18,6 @@
  */
 package org.apache.hyracks.storage.common.file;
 
-import java.io.Serial;
 import java.util.Date;
 
 import org.apache.hyracks.api.exceptions.ErrorCode;
@@ -33,8 +32,7 @@ import it.unimi.dsi.fastutil.objects.Object2IntOpenHashMap;
 
 @NotThreadSafe
 public class FileMapManager implements IFileMapManager {
-    @Serial
-    private static final long serialVersionUID = 1L;
+    private static final long serialVersionUID = 2L;
     private static final int NOT_FOUND = -1;
 
     private final Int2ObjectMap<FileReference> id2nameMap;

Reply via email to