Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,6 @@ HivePrestoToVeloxConnector::toVeloxTableHandle(
return toHiveTableHandle(
hiveLayout->domainPredicate,
hiveLayout->remainingPredicate,
hiveLayout->pushdownFilterEnabled,
tableName,
hiveLayout->dataColumns,
tableHandle,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ velox::dwio::common::FileFormat toVeloxFileFormat(
std::unique_ptr<velox::connector::ConnectorTableHandle> toIcebergTableHandle(
const protocol::TupleDomain<protocol::Subfield>& domainPredicate,
const std::shared_ptr<protocol::RowExpression>& remainingPredicate,
bool isPushdownFilterEnabled,
const std::string& tableName,
const protocol::List<protocol::Column>& dataColumns,
const protocol::TableHandle& tableHandle,
Expand Down Expand Up @@ -100,7 +99,6 @@ std::unique_ptr<velox::connector::ConnectorTableHandle> toIcebergTableHandle(
return std::make_unique<velox::connector::hive::HiveTableHandle>(
tableHandle.connectorId,
tableName,
isPushdownFilterEnabled,
std::move(subfieldFilters),
remainingFilter,
finalDataColumns,
Expand Down Expand Up @@ -312,7 +310,6 @@ IcebergPrestoToVeloxConnector::toVeloxTableHandle(
return toIcebergTableHandle(
icebergLayout->domainPredicate,
icebergLayout->remainingPredicate,
icebergLayout->pushdownFilterEnabled,
tableName,
icebergLayout->dataColumns,
tableHandle,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,6 @@ connector::hive::HiveColumnHandle::ColumnType toHiveColumnType(
std::unique_ptr<velox::connector::ConnectorTableHandle> toHiveTableHandle(
const protocol::TupleDomain<protocol::Subfield>& domainPredicate,
const std::shared_ptr<protocol::RowExpression>& remainingPredicate,
bool isPushdownFilterEnabled,
const std::string& tableName,
const protocol::List<protocol::Column>& dataColumns,
const protocol::TableHandle& tableHandle,
Expand Down Expand Up @@ -799,7 +798,6 @@ std::unique_ptr<velox::connector::ConnectorTableHandle> toHiveTableHandle(
return std::make_unique<connector::hive::HiveTableHandle>(
tableHandle.connectorId,
tableName,
isPushdownFilterEnabled,
std::move(subfieldFilters),
remainingFilter,
finalDataColumns,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ velox::connector::hive::HiveColumnHandle::ColumnType toHiveColumnType(
std::unique_ptr<velox::connector::ConnectorTableHandle> toHiveTableHandle(
const protocol::TupleDomain<protocol::Subfield>& domainPredicate,
const std::shared_ptr<protocol::RowExpression>& remainingPredicate,
bool isPushdownFilterEnabled,
const std::string& tableName,
const protocol::List<protocol::Column>& dataColumns,
const protocol::TableHandle& tableHandle,
Expand Down
2 changes: 1 addition & 1 deletion presto-native-execution/velox
Submodule velox updated 166 files
Loading