Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] [native] Refactor PrestoToVeloxConnector for modularity #23920

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
3 changes: 3 additions & 0 deletions presto-native-execution/presto_cpp/main/PrestoServer.cpp
Original file line number Diff line number Diff line change
@@ -37,7 +37,10 @@
#include "presto_cpp/main/operators/ShuffleRead.h"
#include "presto_cpp/main/operators/UnsafeRowExchangeSource.h"
#include "presto_cpp/main/types/FunctionMetadata.h"
#include "presto_cpp/main/types/HivePrestoToVeloxConnector.h"
#include "presto_cpp/main/types/IcebergPrestoToVeloxConnector.h"
#include "presto_cpp/main/types/PrestoToVeloxQueryPlan.h"
#include "presto_cpp/main/types/TpchPrestoToVeloxConnector.h"
#include "velox/common/base/Counters.h"
#include "velox/common/base/StatsReporter.h"
#include "velox/common/caching/CacheTTLController.h"
Original file line number Diff line number Diff line change
@@ -20,6 +20,7 @@
#include "presto_cpp/main/TaskResource.h"
#include "presto_cpp/main/tests/HttpServerWrapper.h"
#include "presto_cpp/main/tests/MultableConfigs.h"
#include "presto_cpp/main/types/HivePrestoToVeloxConnector.h"
#include "presto_cpp/main/types/PrestoToVeloxConnector.h"
#include "velox/common/base/Fs.h"
#include "velox/common/base/tests/GTestUtils.h"
10 changes: 8 additions & 2 deletions presto-native-execution/presto_cpp/main/types/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -16,8 +16,14 @@ target_link_libraries(presto_type_converter velox_type_parser)

add_library(
presto_types OBJECT
PrestoToVeloxQueryPlan.cpp PrestoToVeloxExpr.cpp VeloxPlanValidator.cpp
PrestoToVeloxSplit.cpp PrestoToVeloxConnector.cpp)
PrestoToVeloxQueryPlan.cpp
PrestoToVeloxExpr.cpp
VeloxPlanValidator.cpp
PrestoToVeloxSplit.cpp
PrestoToVeloxConnector.cpp
TpchPrestoToVeloxConnector.cpp
HivePrestoToVeloxConnector.cpp
IcebergPrestoToVeloxConnector.cpp)
add_dependencies(presto_types presto_operators presto_type_converter velox_type
velox_type_fbhive velox_dwio_dwrf_proto)

Loading