You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@paimon.apache.org by lz...@apache.org on 2024/04/26 05:11:26 UTC

(paimon) branch master updated: [core] Increase serialVersionUID for DataSplit

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 6521678ec [core] Increase serialVersionUID for DataSplit
6521678ec is described below

commit 6521678ec00147aa89ebd61242d4b829a90863c0
Author: Jingsong <ji...@gmail.com>
AuthorDate: Fri Apr 26 13:10:45 2024 +0800

    [core] Increase serialVersionUID for DataSplit
---
 paimon-core/src/main/java/org/apache/paimon/table/source/DataSplit.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/paimon-core/src/main/java/org/apache/paimon/table/source/DataSplit.java b/paimon-core/src/main/java/org/apache/paimon/table/source/DataSplit.java
index 292fe42c2..9a7d4848a 100644
--- a/paimon-core/src/main/java/org/apache/paimon/table/source/DataSplit.java
+++ b/paimon-core/src/main/java/org/apache/paimon/table/source/DataSplit.java
@@ -45,7 +45,7 @@ import static org.apache.paimon.utils.Preconditions.checkArgument;
 /** Input splits. Needed by most batch computation engines. */
 public class DataSplit implements Split {
 
-    private static final long serialVersionUID = 6L;
+    private static final long serialVersionUID = 7L;
 
     private long snapshotId = 0;
     private BinaryRow partition;