File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
presto-native-execution/presto_cpp/main/connectors Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -17,5 +17,6 @@ if(PRESTO_ENABLE_ARROW_FLIGHT_CONNECTOR)
1717 target_link_libraries (presto_connectors presto_flight_connector)
1818endif ()
1919
20- target_link_libraries (presto_connectors presto_velox_expr_conversion
21- velox_clp_connector velox_type_fbhive)
20+ target_link_libraries (
21+ presto_connectors presto_velox_expr_conversion velox_clp_connector
22+ velox_type_fbhive velox_type_fbclp_parser)
Original file line number Diff line number Diff line change 2020#include " presto_cpp/presto_protocol/connector/iceberg/IcebergConnectorProtocol.h"
2121#include " presto_cpp/presto_protocol/connector/tpch/TpchConnectorProtocol.h"
2222
23+ #include < velox/type/fbclp/ClpTypeParser.h>
2324#include < velox/type/fbhive/HiveTypeParser.h>
2425#include " velox/connectors/clp/ClpColumnHandle.h"
2526#include " velox/connectors/clp/ClpConnectorSplit.h"
@@ -1580,7 +1581,7 @@ ClpPrestoToVeloxConnector::toVeloxColumnHandle(
15801581 return std::make_unique<connector::clp::ClpColumnHandle>(
15811582 clpColumn->columnName ,
15821583 clpColumn->originalColumnName ,
1583- typeParser. parse (clpColumn->columnType ));
1584+ facebook::velox::type::fbclp::parseClpType (clpColumn->columnType ));
15841585}
15851586
15861587std::unique_ptr<velox::connector::ConnectorTableHandle>
You can’t perform that action at this time.
0 commit comments