blob: 7c6dd17ffaea6bdb35304840cc1b8270a13fd657 [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.iotdb.db.qp.physical.crud;
import org.apache.iotdb.db.qp.physical.crud.AlignByDevicePlan.MeasurementType;
import org.apache.iotdb.tsfile.file.metadata.enums.TSDataType;
public class MeasurementInfo {
public MeasurementInfo() {}
public MeasurementInfo(MeasurementType measurementType) {
this.measurementType = measurementType;
}
// select s1, s2 as speed from root, then s2 -> speed
private String measurementAlias;
// to record different kinds of measurement
private MeasurementType measurementType;
// to record the real type of the measurement, used for actual query
private TSDataType measurementDataType;
// to record the datatype of the column in the result set
private TSDataType columnDataType;
public void setMeasurementAlias(String measurementAlias) {
this.measurementAlias = measurementAlias;
}
public String getMeasurementAlias() {
return measurementAlias;
}
public void setMeasurementType(MeasurementType measurementType) {
this.measurementType = measurementType;
}
public MeasurementType getMeasurementType() {
return measurementType;
}
public void setMeasurementDataType(TSDataType measurementDataType) {
this.measurementDataType = measurementDataType;
}
public TSDataType getMeasurementDataType() {
return measurementDataType;
}
public void setColumnDataType(TSDataType columnDataType) {
this.columnDataType = columnDataType;
}
public TSDataType getColumnDataType() {
return columnDataType;
}
}