From e6da386cb20e08eccebfc5778e0239307ce6abe8 Mon Sep 17 00:00:00 2001 From: Joe Abraham Date: Wed, 6 Nov 2024 11:05:40 +0530 Subject: [PATCH] remove proxygen --- .../presto_cpp/main/types/PrestoToVeloxExpr.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/presto-native-execution/presto_cpp/main/types/PrestoToVeloxExpr.cpp b/presto-native-execution/presto_cpp/main/types/PrestoToVeloxExpr.cpp index e88adc89b3a1..b9b68c76faff 100644 --- a/presto-native-execution/presto_cpp/main/types/PrestoToVeloxExpr.cpp +++ b/presto-native-execution/presto_cpp/main/types/PrestoToVeloxExpr.cpp @@ -497,8 +497,7 @@ TypedExprPtr VeloxExprConverter::toVeloxExpr( velox::functions::RemoteVectorFunctionMetadata metadata; metadata.serdeFormat = fromSerdeString(systemConfig->remoteFunctionServerSerde()); - proxygen::URL url(systemConfig->remoteFunctionRestUrl()); - metadata.location = url; + metadata.location = systemConfig->remoteFunctionRestUrl(); metadata.functionId = restFunctionHandle->functionId; metadata.version = restFunctionHandle->version;