GH-50330: [C++][R][Parquet] Add missing typename in RleBitPackedDecoderGetRunDecode#50332
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Fixes a C++ compiler error affecting the R/Linux-as-CRAN build by adding the required typename keyword before a dependent nested type in RleBitPackedDecoder’s run-decoder alias.
Changes:
- Add
typenametoRleBitPackedDecoderGetRunDecoder<...>::typeinGetBatch. - Add
typenameto the same alias inGetSpaced. - Add
typenameto the same alias inGetBatchWithDict.
Member
|
@github-actions crossbow submit test-r-linux-as-cran |
|
Revision: 6dfe1be Submitted crossbow builds: ursacomputing/crossbow @ actions-31f8755bf3
|
raulcd
pushed a commit
that referenced
this pull request
Jul 2, 2026
…erGetRunDecode (#50332) ### Rationale for this change Fix compiler error. ### What changes are included in this PR? Missing typename keyword. ### Are these changes tested? In CI. ### Are there any user-facing changes? No. * GitHub Issue: #50330 Authored-by: AntoinePrv <AntoinePrv@users.noreply.github.com> Signed-off-by: Raúl Cumplido <raulcumplido@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Rationale for this change
Fix compiler error.
What changes are included in this PR?
Missing typename keyword.
Are these changes tested?
In CI.
Are there any user-facing changes?
No.