Skip to content

Commit c21e043

Browse files
committed
[native] Advance Velox
1 parent cd4321f commit c21e043

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

presto-native-execution/presto_cpp/main/connectors/PrestoToVeloxConnector.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1130,11 +1130,6 @@ HivePrestoToVeloxConnector::toVeloxSplit(
11301130
for (const auto& [key, value] : hiveSplit->storage.serdeParameters) {
11311131
serdeParameters[key] = value;
11321132
}
1133-
std::unordered_map<std::string, std::string> storageParameters;
1134-
storageParameters.reserve(hiveSplit->storage.parameters.size());
1135-
for (const auto& [key, value] : hiveSplit->storage.parameters) {
1136-
storageParameters[key] = value;
1137-
}
11381133
std::unordered_map<std::string, std::string> infoColumns = {
11391134
{"$path", hiveSplit->fileSplit.path},
11401135
{"$file_size", std::to_string(hiveSplit->fileSplit.fileSize)},
@@ -1158,7 +1153,6 @@ HivePrestoToVeloxConnector::toVeloxSplit(
11581153
customSplitInfo,
11591154
extraFileInfo,
11601155
serdeParameters,
1161-
storageParameters,
11621156
hiveSplit->splitWeight,
11631157
splitContext->cacheable,
11641158
infoColumns);

presto-native-execution/velox

Submodule velox updated 71 files

0 commit comments

Comments
 (0)