Closed mapleFU closed 1 day ago
:warning: GitHub issue #44690 has been automatically assigned in GitHub to PR creator.
After merging your PR, Conbench analyzed the 3 benchmarking runs that have been run so far on merge-commit 501418ece4392b8059151b0d4c3ea174ab2996a2.
There were no benchmark performance regressions. 🎉
The full Conbench report has more details.
Rationale for this change
Add boundary check for
NumericBuilder::AppendValues
for std::vectorOriginally, it will :
AppendValues
might hasstd::vector
as arguments,std::vector::data
might be usedstd::vector::data
might returnsnullptr
if size == 0: https://en.cppreference.com/w/cpp/container/vector/dataWhat changes are included in this PR?
Add boundary check for
NumericBuilder::AppendValues
for std::vectorAre these changes tested?
Covered by existing
Are there any user-facing changes?
no