-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[6.6] HHH-19240 Reduce allocation rate of HQL parser #11227
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
Merged
Merged
Conversation
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
| @Override | ||
| public String toString() { | ||
| return "PerThreadMemoryAllocationSnapshot[" + | ||
| "threadIds=" + threadIds + ", " + |
Check notice
Code scanning / CodeQL
Implicit conversion from array to string Note test
Implicit conversion from Array to String.
| public String toString() { | ||
| return "PerThreadMemoryAllocationSnapshot[" + | ||
| "threadIds=" + threadIds + ", " + | ||
| "threadAllocatedBytes=" + threadAllocatedBytes + ']'; |
Check notice
Code scanning / CodeQL
Implicit conversion from array to string Note test
Implicit conversion from Array to String.
dd76ec1 to
c7433dc
Compare
yrodiere
added a commit
to yrodiere/quarkus
that referenced
this pull request
Nov 13, 2025
Backport of 961d2d4 Necessary because these internals are changing in Hibernate ORM 6.6 as part of hibernate/hibernate-orm#11227, so this dead code may not compile anymore when we upgrade to the next 6.6.
(cherry picked from commit 97d87c4)
…rules (cherry picked from commit 0692e0c)
(cherry picked from commit 0e158e0)
(cherry picked from commit 39ac255)
(cherry picked from commit adcb5db)
…pressionPredicate rule (cherry picked from commit 1eecda8)
(cherry picked from commit 5615bca)
… rule (cherry picked from commit ca0135a)
(cherry picked from commit 411bae9)
c7433dc to
42dd7e4
Compare
…ompilation errors
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.
Backport of #10894
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.
https://hibernate.atlassian.net/browse/HHH-19758
https://hibernate.atlassian.net/browse/HHH-19240