[hibernate-issues] [JIRA] (HHH-14121) Params from main orderBy query are trying to be inserted to subselect query ->parameter index out of range

Raman Kreidzich (JIRA) jira at hibernate.atlassian.net
Mon Jul 27 15:45:05 EDT 2020


Raman Kreidzich ( https://hibernate.atlassian.net/secure/ViewProfile.jspa?accountId=5cbe15fe2675f70e50cd54f5 ) *created* an issue

Hibernate ORM ( https://hibernate.atlassian.net/browse/HHH?atlOrigin=eyJpIjoiNzAxODAwZDI4Y2I5NGE0MmIxZmYyMDc5M2MzZWI5ZDIiLCJwIjoiaiJ9 ) / Bug ( https://hibernate.atlassian.net/browse/HHH-14121?atlOrigin=eyJpIjoiNzAxODAwZDI4Y2I5NGE0MmIxZmYyMDc5M2MzZWI5ZDIiLCJwIjoiaiJ9 ) HHH-14121 ( https://hibernate.atlassian.net/browse/HHH-14121?atlOrigin=eyJpIjoiNzAxODAwZDI4Y2I5NGE0MmIxZmYyMDc5M2MzZWI5ZDIiLCJwIjoiaiJ9 ) Params from main orderBy query are trying to be inserted to subselect query ->parameter index out of range ( https://hibernate.atlassian.net/browse/HHH-14121?atlOrigin=eyJpIjoiNzAxODAwZDI4Y2I5NGE0MmIxZmYyMDc5M2MzZWI5ZDIiLCJwIjoiaiJ9 )

Issue Type: Bug Affects Versions: 5.4.18 Assignee: Unassigned Components: hibernate-core Created: 27/Jul/2020 12:45 PM Environment: java 1.8+, hibernate-core 5.4.18.Final, any DB Priority: Major Reporter: Raman Kreidzich ( https://hibernate.atlassian.net/secure/ViewProfile.jspa?accountId=5cbe15fe2675f70e50cd54f5 )

There are two entities: Post and Comment.
Post has collection of comments that are selected in subselect query:
{{ @OneToMany(mappedBy = "post", fetch = FetchType.EAGER, cascade = CascadeType.MERGE)
@Fetch(value = FetchMode.SUBSELECT)
private List<Comment> comments;}}
When Post entities are selected by CriteriaQuery with specific 'orderBy' expression that contains params (see fragment below), exception 'SQLException: Parameter index out of range (1 > number of parameters, which is 0).' is thrown.
{{Order order = builder.desc(builder.coalesce(root.get("name"), "default_name"));
query.orderBy(order);}}
ORMUnitTestCase: https://github.com/hibernate/hibernate-test-case-templates/pull/35

( https://hibernate.atlassian.net/browse/HHH-14121#add-comment?atlOrigin=eyJpIjoiNzAxODAwZDI4Y2I5NGE0MmIxZmYyMDc5M2MzZWI5ZDIiLCJwIjoiaiJ9 ) Add Comment ( https://hibernate.atlassian.net/browse/HHH-14121#add-comment?atlOrigin=eyJpIjoiNzAxODAwZDI4Y2I5NGE0MmIxZmYyMDc5M2MzZWI5ZDIiLCJwIjoiaiJ9 )

Get Jira notifications on your phone! Download the Jira Cloud app for Android ( https://play.google.com/store/apps/details?id=com.atlassian.android.jira.core&referrer=utm_source%3DNotificationLink%26utm_medium%3DEmail ) or iOS ( https://itunes.apple.com/app/apple-store/id1006972087?pt=696495&ct=EmailNotificationLink&mt=8 ) This message was sent by Atlassian Jira (v1001.0.0-SNAPSHOT#100140- sha1:fbb0377 )
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/hibernate-issues/attachments/20200727/f3b767f1/attachment.html 


More information about the hibernate-issues mailing list