File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
src/main/java/net/sf/jsqlparser/statement/alter Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -49,14 +49,6 @@ public class AlterExpression implements Serializable {
4949 private boolean uk ;
5050 private boolean useEqual ;
5151
52- public List <String > getPartitions () {
53- return partitions ;
54- }
55-
56- public void setPartitions (List <String > partitions ) {
57- this .partitions = partitions ;
58- }
59-
6052 private List <String > partitions ;
6153 private List <PartitionDefinition > partitionDefinitions ;
6254 private List <ConstraintState > constraints ;
@@ -778,6 +770,14 @@ public AlterExpression addConstraints(Collection<? extends ConstraintState> cons
778770 return this .withConstraints (collection );
779771 }
780772
773+ public List <String > getPartitions () {
774+ return partitions ;
775+ }
776+
777+ public void setPartitions (List <String > partitions ) {
778+ this .partitions = partitions ;
779+ }
780+
781781 public List <PartitionDefinition > getPartitionDefinitions () {
782782 return partitionDefinitions ;
783783 }
You can’t perform that action at this time.
0 commit comments