Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: facebookincubator#6000

Reviewed By: DenisYaroshevskiy

Differential Revision: D48065369

fbshipit-source-id: ae0bcab4701d2e92f7b75991108e559825addc70
  • Loading branch information
generatedunixname89002005287564 authored and facebook-github-bot committed Aug 4, 2023
1 parent 8def205 commit 0d328e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion velox/exec/tests/TableWriteTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ class TableWriteTest : public HiveConnectorTestBase {
std::vector<std::string> conjuncts;

std::vector<std::string> partitionKeyValues;
folly::split("/", partitionName, partitionKeyValues);
folly::split('/', partitionName, partitionKeyValues);
VELOX_CHECK_EQ(partitionKeyValues.size(), partitionTypes.size());

for (auto i = 0; i < partitionKeyValues.size(); ++i) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ getFunctionNamesAndArgs(const std::vector<std::string>& aggregates) {
std::vector<std::string> aggregateArgs;
for (const auto& aggregate : aggregates) {
std::vector<std::string> tokens;
folly::split("(", aggregate, tokens);
folly::split('(', aggregate, tokens);
VELOX_CHECK_EQ(tokens.size(), 2);
functionNames.push_back(tokens[0]);
aggregateArgs.push_back(tokens[1].substr(0, tokens[1].find(')')));
Expand Down

0 comments on commit 0d328e5

Please sign in to comment.