-
Notifications
You must be signed in to change notification settings - Fork 3.6k
HHH-19420 - Support batch-size for collections in mapping.xml #10106
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
} ); | ||
|
||
scope.inTransaction( (session) -> { | ||
List<ProductLine> list = session.createQuery( "from ProductLine pl order by pl.description" ).list(); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note test
QueryProducerImplementor.createQuery
} ); | ||
|
||
scope.inTransaction( (session) -> { | ||
List<Model> models = session.createQuery( "from Model m" ).list(); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note test
QueryProducerImplementor.createQuery
} ); | ||
|
||
scope.inTransaction( (session) -> { | ||
Iterator<Model> iter = session.createQuery( "from Model" ).list().iterator(); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note test
QueryProducerImplementor.createQuery
|
||
session.clear(); | ||
|
||
List<ProductLine> list = session.createQuery( "from ProductLine" ).list(); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note test
QueryProducerImplementor.createQuery
} ); | ||
|
||
scope.inTransaction( (session) -> { | ||
List<ProductLine> list = session.createQuery( "from ProductLine pl order by pl.description" ).list(); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note test
HHH-19420 - Support batch-size for collections in mapping.xml
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-19420