Skip to content

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
majetideepak committed Dec 7, 2023
1 parent 7a3f414 commit 0d51fb4
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 69 deletions.
5 changes: 0 additions & 5 deletions velox/exec/tests/HashJoinTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4126,8 +4126,6 @@ TEST_F(HashJoinTest, dynamicFilters) {
auto op = PlanBuilder(planNodeIdGenerator, pool_.get())
.startTableScan()
.outputType(scanOutputType)
.tableHandle(makeTableHandle(
common::test::SubfieldFiltersBuilder().build()))
.assignments(assignments)
.endTableScan()
.capturePlanNodeId(probeScanId)
Expand Down Expand Up @@ -4880,8 +4878,6 @@ TEST_F(HashJoinTest, dynamicFilterOnPartitionKey) {
.partitionKey("k", "0")
.build();
auto outputType = ROW({"n1_0", "n1_1"}, {BIGINT(), BIGINT()});
std::shared_ptr<connector::hive::HiveTableHandle> tableHandle =
makeTableHandle();
ColumnHandleMap assignments = {
{"n1_0", regularColumn("c0", BIGINT())},
{"n1_1", partitionKey("k", BIGINT())}};
Expand All @@ -4892,7 +4888,6 @@ TEST_F(HashJoinTest, dynamicFilterOnPartitionKey) {
PlanBuilder(planNodeIdGenerator)
.startTableScan()
.outputType(outputType)
.tableHandle(tableHandle)
.assignments(assignments)
.endTableScan()
.capturePlanNodeId(probeScanId)
Expand Down
Loading

0 comments on commit 0d51fb4

Please sign in to comment.