Uh oh!
There was an error while loading. Please reload this page.
GH-38071: [C++][CI] Fix Overlap column chunk ranges for pre-buffer - #38073
Conversation
Uh oh!
There was an error while loading. Please reload this page.
mapleFU
commented
Oct 6, 2023
@jorisvandenbossche@lidavidm I've add an |
| std::vector<ReadRange> CoalesceReadRanges(std::vector<ReadRange> ranges, | ||
| int64_t hole_size_limit, | ||
| int64_t range_size_limit); | ||
| Result<std::vector<ReadRange>> CoalesceReadRanges(std::vector<ReadRange> ranges, |
There was a problem hiding this comment.
Don't know if this matter, since it change the public api.
There was a problem hiding this comment.
It's in an internal header so no expectation that it remains stable
mapleFU
commented
Oct 6, 2023
Hmm...Seems this is not caused by me 🤔 |
kou
left a comment
There was a problem hiding this comment.
+1
The Azure failure will be unrelated. I re-ran the job.
mapleFU
commented
Oct 8, 2023
I've rebase the master to rerun the test :-) Hope this time it passes... |
kou
commented
Oct 8, 2023
Passed. :-) |
After merging your PR, Conbench analyzed the 4 benchmarking runs that have been run so far on merge-commit 0b9f817. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. |
jorisvandenbossche
commented
Oct 9, 2023
Thanks a lot @mapleFU for fixing this! |
…fer (apache#38073) ### Rationale for this change The C++ Parquet Arrow fuzz will generate bad Parquet file with bad row-range, this patch change the `CoalesceReadRanges` to return `Result<>`. ### What changes are included in this PR? Just a checking, change `CoalesceReadRanges` to return `Result<>`. ### Are these changes tested? No. ### Are there any user-facing changes? No. * Closes: apache#38071 Authored-by: mwish <maplewish117@gmail.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
…fer (apache#38073) ### Rationale for this change The C++ Parquet Arrow fuzz will generate bad Parquet file with bad row-range, this patch change the `CoalesceReadRanges` to return `Result<>`. ### What changes are included in this PR? Just a checking, change `CoalesceReadRanges` to return `Result<>`. ### Are these changes tested? No. ### Are there any user-facing changes? No. * Closes: apache#38071 Authored-by: mwish <maplewish117@gmail.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
Rationale for this change
The C++ Parquet Arrow fuzz will generate bad Parquet file with bad row-range, this patch change the
CoalesceReadRangesto returnResult<>.What changes are included in this PR?
Just a checking, change
CoalesceReadRangesto returnResult<>.Are these changes tested?
No.
Are there any user-facing changes?
No.