blob: 56a6d0d9456ba484b61067e230e6577bbc06cdf7 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package org.apache.doris.persist;
import org.apache.doris.catalog.Catalog;
import org.apache.doris.catalog.DataProperty;
import org.apache.doris.common.FeMetaVersion;
import org.apache.doris.common.io.Writable;
import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
public class ModifyPartitionInfo implements Writable {
private long dbId;
private long tableId;
private long partitionId;
private DataProperty dataProperty;
private short replicationNum;
private boolean isInMemory;
public ModifyPartitionInfo() {
// for persist
}
public ModifyPartitionInfo(long dbId, long tableId, long partitionId,
DataProperty dataProperty, short replicationNum,
boolean isInMemory) {
this.dbId = dbId;
this.tableId = tableId;
this.partitionId = partitionId;
this.dataProperty = dataProperty;
this.replicationNum = replicationNum;
this.isInMemory = isInMemory;
}
public long getDbId() {
return dbId;
}
public long getTableId() {
return tableId;
}
public long getPartitionId() {
return partitionId;
}
public DataProperty getDataProperty() {
return dataProperty;
}
public short getReplicationNum() {
return replicationNum;
}
public boolean isInMemory() {
return isInMemory;
}
public static ModifyPartitionInfo read(DataInput in) throws IOException {
ModifyPartitionInfo info = new ModifyPartitionInfo();
info.readFields(in);
return info;
}
@Override
public void write(DataOutput out) throws IOException {
out.writeLong(dbId);
out.writeLong(tableId);
out.writeLong(partitionId);
if (dataProperty == null) {
out.writeBoolean(false);
} else {
out.writeBoolean(true);
dataProperty.write(out);
}
out.writeShort(replicationNum);
out.writeBoolean(isInMemory);
}
public void readFields(DataInput in) throws IOException {
dbId = in.readLong();
tableId = in.readLong();
partitionId = in.readLong();
boolean hasDataProperty = in.readBoolean();
if (hasDataProperty) {
dataProperty = DataProperty.read(in);
} else {
dataProperty = null;
}
replicationNum = in.readShort();
if (Catalog.getCurrentCatalogJournalVersion() >= FeMetaVersion.VERSION_72) {
isInMemory = in.readBoolean();
}
}
}