File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
presto-native-execution/presto_cpp/main/tvf/exec Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ using namespace facebook::velox::exec;
2828namespace {
2929
3030const RowTypePtr requiredColumnType (
31- const std::string& name,
3231 const TableFunctionProcessorNodePtr& tableFunctionNode) {
3332 VELOX_CHECK_GT (tableFunctionNode->requiredColumns ().size (), 0 );
3433 auto columns = tableFunctionNode->requiredColumns ();
@@ -62,7 +61,7 @@ TableFunctionOperator::TableFunctionOperator(
6261 stringAllocator_(pool_),
6362 tableFunctionNode_(tableFunctionNode),
6463 inputType_(tableFunctionNode->sources ()[0]->outputType()),
65- requiredColummType_(requiredColumnType(" t1 " , tableFunctionNode)),
64+ requiredColummType_(requiredColumnType(tableFunctionNode)),
6665 data_(std::make_unique<RowContainer>(
6766 requiredColummType_->children (),
6867 pool_)),
You can’t perform that action at this time.
0 commit comments