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

HHH-19256 : Criteria SUM expression return type error #9863

Closed
wants to merge 1 commit into from

Conversation

VladoKuruc
Copy link
Contributor

https://hibernate.atlassian.net/browse/HHH-19256


By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license
and can be relicensed under the terms of the LGPL v2.1 license in the future at the maintainers' discretion.
For more information on licensing, please check here.


Comment on lines +97 to +99
criteria.select(builder.tuple( builder.sum( productRoot.get( Product_.quantity ) ) ));
Tuple sumResult = em.createQuery( criteria ).getSingleResult();
assertReturnType( Long.class, sumResult );
Copy link
Member

@gavinking gavinking Mar 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Assuming that Product.quantity is of type Integer, the type of builder.sum( productRoot.get( Product_.quantity ) ) is Expression<Integer>, and the Tuple should contain an Integer and not a Long.

So I believe this assertion is incorrect, and that there's no bug here.

@@ -159,4 +173,13 @@
);
}
}

private void assertReturnType(Class expectedType, Tuple value) {

Check notice

Code scanning / CodeQL

Confusing overloading of methods Note test

Method AggregationResultTest.assertReturnType(..) could be confused with overloaded method
assertReturnType
, since dispatch depends on static types.
@VladoKuruc VladoKuruc closed this Mar 17, 2025
@VladoKuruc VladoKuruc deleted the HHH-19256 branch March 17, 2025 11:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants