-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add some extra PlanNode functionality. (#3521)
Summary: Pull Request resolved: #3521 Add PlanNode::visit() and two simple helper methods. Reviewed By: gggrace14 Differential Revision: D42049960 fbshipit-source-id: 174c2ce31b0bfe17809ac01227d44d957ef364fa
- Loading branch information
1 parent
4c3ac73
commit e968ded
Showing
3 changed files
with
95 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/* | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* Licensed 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. | ||
*/ | ||
#include <gtest/gtest.h> | ||
|
||
#include "velox/core/PlanNode.h" | ||
|
||
using namespace ::facebook::velox; | ||
using namespace ::facebook::velox::core; | ||
|
||
TEST(TestPlanNode, visit) { | ||
std::shared_ptr<const Type> bigIntType = | ||
std::make_shared<ScalarType<TypeKind::BIGINT>>(); | ||
auto rowType = std::make_shared<RowType>( | ||
std::vector<std::string>{"name1"}, | ||
std::vector<std::shared_ptr<const Type>>{bigIntType}); | ||
|
||
std::shared_ptr<connector::ConnectorTableHandle> tableHandle; | ||
std::unordered_map<std::string, std::shared_ptr<connector::ColumnHandle>> | ||
assignments; | ||
|
||
std::shared_ptr<PlanNode> tableScan3 = | ||
std::make_shared<TableScanNode>("3", rowType, tableHandle, assignments); | ||
std::shared_ptr<PlanNode> tableScan2 = | ||
std::make_shared<TableScanNode>("2", rowType, tableHandle, assignments); | ||
|
||
std::vector<FieldAccessTypedExprPtr> sortingKeys; | ||
std::vector<SortOrder> sortingOrders; | ||
std::shared_ptr<PlanNode> localMerge1 = std::make_shared<LocalMergeNode>( | ||
"1", | ||
sortingKeys, | ||
sortingOrders, | ||
std::vector<PlanNodePtr>{tableScan2, tableScan3}); | ||
|
||
std::vector<std::string> names; | ||
std::vector<TypedExprPtr> projections; | ||
std::shared_ptr<PlanNode> project0 = | ||
std::make_shared<ProjectNode>("0", names, projections, localMerge1); | ||
|
||
EXPECT_EQ( | ||
tableScan3.get(), | ||
PlanNode::visit(project0.get(), [](const PlanNode* node) { | ||
return node->id() == "3"; | ||
})); | ||
|
||
EXPECT_EQ( | ||
project0.get(), PlanNode::visit(project0.get(), [](const PlanNode* node) { | ||
return node->name() == "Project"; | ||
})); | ||
|
||
EXPECT_EQ(nullptr, PlanNode::visit(project0.get(), [](const PlanNode* node) { | ||
return node->name() == "Unknown"; | ||
})); | ||
} |