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-18556 Expressions.nullExpresion() in querydsl result in NPE in SqmExpressible #8936

Merged
merged 2 commits into from
Sep 12, 2024

Conversation

dreab8
Copy link
Member

@dreab8 dreab8 commented Sep 12, 2024

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

#8929 Backport


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.


@dreab8 dreab8 added the 6.6 label Sep 12, 2024
@dreab8 dreab8 merged commit e1ded5d into hibernate:6.6 Sep 12, 2024
25 checks passed
@@ -906,7 +907,7 @@ public CommonQueryContract setParameter(int position, Object value) {
final QueryParameter<Object> param = binding.getQueryParameter();
if ( param.allowsMultiValuedBinding() ) {
final BindableType<?> hibernateType = param.getHibernateType();
if ( hibernateType == null || isInstance( hibernateType, value ) ) {
if ( hibernateType == null || hibernateType instanceof NullSqmExpressible || isInstance( hibernateType, value ) ) {
Copy link
Member

Choose a reason for hiding this comment

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

@dreab8 Why did you make this change for positional parameters, but not for named parameters?

Copy link
Member Author

Choose a reason for hiding this comment

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

Hi @gavinking,

a big oversight :( I'm going to open a Jira and fix it.

Copy link
Member Author

Choose a reason for hiding this comment

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

thanks for spotting it

Copy link
Member

Choose a reason for hiding this comment

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

Excellent, cheers mate 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants