Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Possible ClassCast exception in ResultProcessor #2296

Closed
michael-simons opened this issue Feb 12, 2021 · 3 comments
Closed

Possible ClassCast exception in ResultProcessor #2296

michael-simons opened this issue Feb 12, 2021 · 3 comments
Labels
type: bug A general bug

Comments

@michael-simons
Copy link
Contributor

michael-simons commented Feb 12, 2021

This fragment

if (source instanceof Slice && method.isPageQuery() || method.isSliceQuery()) {
return (T) ((Slice<?>) source).map(converter::convert);
}

assumes that if the method is a slice method, the non converted result is already a slice, which does fail if it is a plain collection.

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged label Feb 12, 2021
@michael-simons
Copy link
Contributor Author

Ok, might we used in wrong in SDN6, but still find it irritating.

@mp911de
Copy link
Member

mp911de commented Feb 15, 2021

Good catch, it's indeed a potential bug.

@mp911de mp911de added type: bug A general bug and removed status: waiting-for-triage An issue we've not yet triaged labels Feb 15, 2021
@mp911de mp911de added this to the 2.2.13 (Moore SR13) milestone Feb 15, 2021
@michael-simons
Copy link
Contributor Author

Thank you!

We now use the result processor in such a way that we pass in a Slice with unprocessed results as compared to before when we passed in the raw raw result (raw list, raw object) from the database. This works for us as expected and was no big deal to change, but I didn't realize the need just through the API or JavaDoc upfront.

mp911de added a commit that referenced this issue Feb 15, 2021
We now guard Slice conversion against potential ClassCastException using the proper condition grouping. Previously, the conversion could happen if the query is a slice query while the source was not a Slice.

Resolves #2296.
mp911de added a commit that referenced this issue Feb 15, 2021
We now guard Slice conversion against potential ClassCastException using the proper condition grouping. Previously, the conversion could happen if the query is a slice query while the source was not a Slice.

Resolves #2296.
mp911de added a commit that referenced this issue Feb 15, 2021
We now guard Slice conversion against potential ClassCastException using the proper condition grouping. Previously, the conversion could happen if the query is a slice query while the source was not a Slice.

Resolves #2296.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: bug A general bug
Projects
None yet
Development

No branches or pull requests

3 participants