-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
HHH-16991 Fix array based id restriction with EnhanceUserType #11305
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
Conversation
| session -> { | ||
| for (long i = 1L; i < 11; i++) { | ||
| Parent parent = new Parent( new Parent.ParentId( "parent-" + i ) ); | ||
| Child child1 = new Child( i * 100L + 1L, parent ); |
Check notice
Code scanning / CodeQL
Unread local variable Note test
| for (long i = 1L; i < 11; i++) { | ||
| Parent parent = new Parent( new Parent.ParentId( "parent-" + i ) ); | ||
| Child child1 = new Child( i * 100L + 1L, parent ); | ||
| Child child2 = new Child( i * 100L + 2L, parent ); |
Check notice
Code scanning / CodeQL
Unread local variable Note test
| Parent parent = new Parent( new Parent.ParentId( "parent-" + i ) ); | ||
| Child child1 = new Child( i * 100L + 1L, parent ); | ||
| Child child2 = new Child( i * 100L + 2L, parent ); | ||
| Child child3 = new Child( i * 100L + 3L, parent ); |
Check notice
Code scanning / CodeQL
Unread local variable Note test
| Child child1 = new Child( i * 100L + 1L, parent ); | ||
| Child child2 = new Child( i * 100L + 2L, parent ); | ||
| Child child3 = new Child( i * 100L + 3L, parent ); | ||
| Child child4 = new Child( i * 100L + 4L, parent ); |
Check notice
Code scanning / CodeQL
Unread local variable Note test
| Child child2 = new Child( i * 100L + 2L, parent ); | ||
| Child child3 = new Child( i * 100L + 3L, parent ); | ||
| Child child4 = new Child( i * 100L + 4L, parent ); | ||
| Child child5 = new Child( i * 100L + 5L, parent ); |
Check notice
Code scanning / CodeQL
Unread local variable Note test
| Child child4 = new Child( i * 100L + 4L, parent ); | ||
| Child child5 = new Child( i * 100L + 5L, parent ); | ||
| Child child6 = new Child( i * 100L + 6L, parent ); | ||
| Child child7 = new Child( i * 100L + 7L, parent ); |
Check notice
Code scanning / CodeQL
Unread local variable Note test
| Child child5 = new Child( i * 100L + 5L, parent ); | ||
| Child child6 = new Child( i * 100L + 6L, parent ); | ||
| Child child7 = new Child( i * 100L + 7L, parent ); | ||
| Child child8 = new Child( i * 100L + 8L, parent ); |
Check notice
Code scanning / CodeQL
Unread local variable Note test
| Child child6 = new Child( i * 100L + 6L, parent ); | ||
| Child child7 = new Child( i * 100L + 7L, parent ); | ||
| Child child8 = new Child( i * 100L + 8L, parent ); | ||
| Child child9 = new Child( i * 100L + 9L, parent ); |
Check notice
Code scanning / CodeQL
Unread local variable Note test
| Child child7 = new Child( i * 100L + 7L, parent ); | ||
| Child child8 = new Child( i * 100L + 8L, parent ); | ||
| Child child9 = new Child( i * 100L + 9L, parent ); | ||
| Child child10 = new Child( i * 100L + 10L, parent ); |
Check notice
Code scanning / CodeQL
Unread local variable Note test
| Child child8 = new Child( i * 100L + 8L, parent ); | ||
| Child child9 = new Child( i * 100L + 9L, parent ); | ||
| Child child10 = new Child( i * 100L + 10L, parent ); | ||
| Child child11 = new Child( i * 100L + 11L, parent ); |
Check notice
Code scanning / CodeQL
Unread local variable Note test
0f019d9 to
9f03a7e
Compare
9f03a7e to
cece59a
Compare
cece59a to
925603d
Compare
[Please describe here what your change is about]
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-16991