Skip to content

Commit ba95533

Browse files
committed
fix
1 parent bef86e7 commit ba95533

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

paimon-core/src/main/java/org/apache/paimon/Snapshot.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333

3434
import java.io.FileNotFoundException;
3535
import java.io.IOException;
36+
import java.io.Serializable;
3637
import java.util.Map;
3738
import java.util.Objects;
3839

@@ -61,7 +62,9 @@
6162
*/
6263
@Public
6364
@JsonIgnoreProperties(ignoreUnknown = true)
64-
public class Snapshot {
65+
public class Snapshot implements Serializable {
66+
67+
private static final long serialVersionUID = 1L;
6568

6669
public static final long FIRST_SNAPSHOT_ID = 1;
6770

0 commit comments

Comments
 (0)