Skip to content

Commit

Permalink
address comment
Browse files Browse the repository at this point in the history
  • Loading branch information
gaoyangxiaozhu committed Jun 28, 2024
1 parent fb2ac11 commit c00cd6c
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions velox/functions/sparksql/SplitFunctions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ class Split final : public exec::VectorFunction {
exec::VectorWriter<Array<Varchar>> resultWriter;
resultWriter.init(*result->as<ArrayVector>());
int64_t limit = std::numeric_limits<int64_t>::max();
if (!noLimit) {
limit = limits->valueAt<int64_t>(0);
if (limit <= 0) {
limit = std::numeric_limits<int64_t>::max();
}
}
// Optimization for the (flat, const, const) case.
if (strings->isIdentityMapping() and delims->isConstantMapping() and
(noLimit or limits->isConstantMapping())) {
const auto* rawStrings = strings->data<StringView>();
const auto delim = delims->valueAt<StringView>(0);
if (!noLimit) {
limit = limits->valueAt<int64_t>(0);
if (limit <= 0) {
limit = std::numeric_limits<int64_t>::max();
}
}
rows.applyToSelected([&](vector_size_t row) {
if (delim.size() == 0) {
splitEmptyDelimer(rawStrings[row], limit, row, resultWriter);
Expand All @@ -65,6 +65,12 @@ class Split final : public exec::VectorFunction {
// direct access.
rows.applyToSelected([&](vector_size_t row) {
const auto delim = delims->valueAt<StringView>(row);
if (!noLimit) {
limit = limits->valueAt<int64_t>(row);
if (limit <= 0) {
limit = std::numeric_limits<int64_t>::max();
}
}
if (delim.size() == 0) {
splitEmptyDelimer(
strings->valueAt<StringView>(row), limit, row, resultWriter);
Expand Down

0 comments on commit c00cd6c

Please sign in to comment.