Skip to content

Commit e3f6421

Browse files
committed
Changes from code review
1 parent f0381a4 commit e3f6421

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

velox/exec/tests/utils/PlanBuilder.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ core::PlanNodePtr PlanBuilder::TableWriterBuilder::build(core::PlanNodeId id) {
299299
outputType,
300300
outputType->names(),
301301
aggregationNode,
302-
insertHandle,
302+
insertHandle_,
303303
false,
304304
TableWriteTraits::outputType(aggregationNode),
305305
connector::CommitStrategy::kNoCommit,

velox/exec/tests/utils/PlanBuilder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ class PlanBuilder {
431431
std::string outputDirectoryPath_;
432432
std::string outputFileName_;
433433
std::string connectorId_{kHiveDefaultConnectorId};
434-
shared_ptr<core::InsertTableHandle> insertHandle_;
434+
std::shared_ptr<core::InsertTableHandle> insertHandle_;
435435

436436
std::vector<std::string> partitionBy_;
437437
int32_t bucketCount_{0};

0 commit comments

Comments
 (0)