This is an automated email from the ASF dual-hosted git repository. rong pushed a commit to branch select-into in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit b3a88470e54771cc21b6e1b9e307ea72b40a864b Author: Steve Yurong Su <[email protected]> AuthorDate: Wed Jul 14 10:17:12 2021 +0800 make select-into plan a query plan --- .../engine/transporter/SelectIntoTransporter.java | 27 ++++++++++++++++++++++ .../iotdb/db/qp/physical/crud/SelectIntoPlan.java | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/server/src/main/java/org/apache/iotdb/db/engine/transporter/SelectIntoTransporter.java b/server/src/main/java/org/apache/iotdb/db/engine/transporter/SelectIntoTransporter.java new file mode 100644 index 0000000..385ddbd --- /dev/null +++ b/server/src/main/java/org/apache/iotdb/db/engine/transporter/SelectIntoTransporter.java @@ -0,0 +1,27 @@ +/* + * 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.engine.transporter; + +import org.apache.iotdb.db.qp.physical.crud.SelectIntoPlan; + +public class SelectIntoTransporter { + + public void execute(SelectIntoPlan selectIntoPlan) {} +} diff --git a/server/src/main/java/org/apache/iotdb/db/qp/physical/crud/SelectIntoPlan.java b/server/src/main/java/org/apache/iotdb/db/qp/physical/crud/SelectIntoPlan.java index 7edb17d..71bf595 100644 --- a/server/src/main/java/org/apache/iotdb/db/qp/physical/crud/SelectIntoPlan.java +++ b/server/src/main/java/org/apache/iotdb/db/qp/physical/crud/SelectIntoPlan.java @@ -35,7 +35,7 @@ public class SelectIntoPlan extends PhysicalPlan { private List<PartialPath> intoPaths; public SelectIntoPlan() { - super(false, OperatorType.SELECT_INTO); + super(true, OperatorType.SELECT_INTO); } public SelectIntoPlan(QueryPlan queryPlan, List<PartialPath> intoPaths) {
