Skip to content

Commit

Permalink
Quick Fix codestyle (facebookincubator#627)
Browse files Browse the repository at this point in the history
* fix codestyle
  • Loading branch information
zhejiangxiaomai committed Nov 29, 2022
1 parent 09dfdcf commit 0fabaae
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cpp/velox/compute/ArrowTypeUtils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,7 @@ std::shared_ptr<arrow::DataType> toArrowTypeFromName(const std::string& type_nam
std::size_t token_pos = innerType.find_first_of(",");

keyType = toArrowTypeFromName(innerType.substr(0, token_pos));
valueType = toArrowTypeFromName(
innerType.substr(token_pos + 1, innerType.length() - 1));
valueType = toArrowTypeFromName(innerType.substr(token_pos + 1, innerType.length() - 1));

return arrow::map(keyType, valueType);
}
Expand Down

0 comments on commit 0fabaae

Please sign in to comment.