Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Commit

Permalink
fix decimal partial sum (#464)
Browse files Browse the repository at this point in the history
Signed-off-by: Yuan Zhou <yuan.zhou@intel.com>
  • Loading branch information
zhouyuan authored Aug 11, 2021
1 parent 57561fb commit 6969ecf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2093,7 +2093,7 @@ class SumActionPartial<DataType, CType, ResDataType, ResCType,
builder_isempty_->Append(true);
} else {
builder_->AppendNull();
builder_isempty_->AppendNull();
builder_isempty_->Append(false);
}
}
RETURN_NOT_OK(builder_->Finish(&arr_out));
Expand All @@ -2116,7 +2116,7 @@ class SumActionPartial<DataType, CType, ResDataType, ResCType,
builder_isempty_->Append(true);
} else {
builder_->AppendNull();
builder_isempty_->AppendNull();
builder_isempty_->Append(false);
}
}
RETURN_NOT_OK(builder_->Finish(&arr_out));
Expand Down

0 comments on commit 6969ecf

Please sign in to comment.