Skip to content

Commit

Permalink
fix PartitionDefinition to Serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
mj-db committed Nov 12, 2024
1 parent b0d6f1b commit d8203a3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
package net.sf.jsqlparser.statement.create.table;

import java.io.Serializable;
import java.util.List;

public class PartitionDefinition {
public class PartitionDefinition implements Serializable {
private String partitionName;
private String partitionOperation;
private List<String> values;
Expand Down

0 comments on commit d8203a3

Please sign in to comment.