blob: 52b5b647bff2ef56af92c6808325d931ffab48b8 [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;
import org.apache.iotdb.db.exception.StorageEngineException;
import org.apache.iotdb.db.exception.metadata.MetadataException;
import org.apache.iotdb.db.exception.query.QueryProcessException;
import org.apache.iotdb.db.metadata.PartialPath;
import org.apache.iotdb.db.qp.Planner;
import org.apache.iotdb.db.qp.executor.PlanExecutor;
import org.apache.iotdb.db.qp.physical.crud.InsertTabletPlan;
import org.apache.iotdb.db.qp.physical.crud.QueryPlan;
import org.apache.iotdb.db.utils.EnvironmentUtils;
import org.apache.iotdb.tsfile.exception.filter.QueryFilterOptimizationException;
import org.apache.iotdb.tsfile.file.metadata.enums.TSDataType;
import org.apache.iotdb.tsfile.read.common.RowRecord;
import org.apache.iotdb.tsfile.read.query.dataset.QueryDataSet;
import org.apache.iotdb.tsfile.utils.Binary;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
public class InsertTabletPlanTest {
private final Planner processor = new Planner();
@Before
public void before() {
EnvironmentUtils.envSetUp();
}
@After
public void clean() throws IOException, StorageEngineException {
EnvironmentUtils.cleanEnv();
}
@Test
public void testInsertTabletPlan()
throws QueryProcessException, MetadataException, InterruptedException,
QueryFilterOptimizationException, StorageEngineException, IOException {
long[] times = new long[] {110L, 111L, 112L, 113L};
List<Integer> dataTypes = new ArrayList<>();
dataTypes.add(TSDataType.DOUBLE.ordinal());
dataTypes.add(TSDataType.FLOAT.ordinal());
dataTypes.add(TSDataType.INT64.ordinal());
dataTypes.add(TSDataType.INT32.ordinal());
dataTypes.add(TSDataType.BOOLEAN.ordinal());
dataTypes.add(TSDataType.TEXT.ordinal());
Object[] columns = new Object[6];
columns[0] = new double[4];
columns[1] = new float[4];
columns[2] = new long[4];
columns[3] = new int[4];
columns[4] = new boolean[4];
columns[5] = new Binary[4];
for (int r = 0; r < 4; r++) {
((double[]) columns[0])[r] = 1.0;
((float[]) columns[1])[r] = 2;
((long[]) columns[2])[r] = 10000;
((int[]) columns[3])[r] = 100;
((boolean[]) columns[4])[r] = false;
((Binary[]) columns[5])[r] = new Binary("hh" + r);
}
InsertTabletPlan tabletPlan =
new InsertTabletPlan(
new PartialPath("root.isp.d1"),
new String[] {"s1", "s2", "s3", "s4", "s5", "s6"},
dataTypes);
tabletPlan.setTimes(times);
tabletPlan.setColumns(columns);
tabletPlan.setRowCount(times.length);
PlanExecutor executor = new PlanExecutor();
executor.insertTablet(tabletPlan);
QueryPlan queryPlan = (QueryPlan) processor.parseSQLToPhysicalPlan("select * from root.isp.d1");
QueryDataSet dataSet = executor.processQuery(queryPlan, EnvironmentUtils.TEST_QUERY_CONTEXT);
Assert.assertEquals(6, dataSet.getPaths().size());
while (dataSet.hasNext()) {
RowRecord record = dataSet.next();
Assert.assertEquals(6, record.getFields().size());
}
}
}