JavaTypeDescriptorRegistry is used by Hibernate OGM in
(o.h.o.type.impl.TypeTranslatorImpl).
>From my side, the proposed change is good, esp. if it fixes some existing
bugs. It'd lock down OGM to a specific minor of ORM, but that'll happen
anyways once we make use of the changes around schema tool
Currently we are still working on 6.0 "on top" of 5.2, meaning that all of
the changes we are proposing to ORM for 6.0 are kept in a separate
repo/project using ORM 5.2 as a dependency.
As I work on 6.0 I have come across a change that I would like to make that
requires that I change something in
Hi everyone!
Here are the transcripts of this week's NoORM IRC meeting:
15:54 < jbott> Minutes:
http://transcripts.jboss.org/meeting/irc.freenode.org/hibernate-dev/2016/hibernate-dev.2016-06-07-13.04.html
15:54 < jbott> Minutes (text):
http://transcripts.jboss.org/meeting/irc.freenode.org/hibernat
Too bad we can't just publish a Docker image.
Is this something we'd publish somewhere (Nexus/Artifactory)? I know
nothing about building a WF module ZIP. But if you are willing to do the
work and it helps OGM etc, of course we would incorporate it.
On Tue, Jun 7, 2016 at 8:19 AM Gunnar Morling
Hello,
actually I would like to learn how the FetchMode.JOIN is supposed to
work in case of cycles (not really cycles but MetamodelGraphWalker
considers them cycles).
Check the test case please - it gets LazyInitializationException on a
relation despite that relation being marked as JOIN FETCH
Hello,
What about backporting the JCache module?
Since JCache is Java 1.6, that could make it available to more users.
I believe there have been small API changes between 5.1 and 5.2 but still
the porting should be easy enough and I am willing to help for that.
Regards,
Louis
On Tue, Jun 7, 2016
I agree that the wording should be changed. That sentiment is true of
many, many exceptions.
On Tue, Jun 7, 2016 at 8:21 AM Emmanuel Bernard
wrote:
> We probably should change this message.
> When was the last time this message was due to a bug in our logic?
> I can't remember a time when this
We probably should change this message.
When was the last time this message was due to a bug in our logic?
I can't remember a time when this was the case personally.
Thoughts?
On Sun 2016-06-05 17:17, Petar Tahchiev wrote:
> Hello,
>
> I'm using hibernate version 5.1.0.Final and spring-data-rest
So long as we limit that to the Stream access, +1
On Tue, Jun 7, 2016 at 5:07 AM andrea boriero wrote:
> it sounds reasonable to me
>
> On 7 June 2016 at 10:57, Vlad Mihalcea wrote:
>
> > To get a picture of why we need this, consider the following example from
> > the docs:
> >
> > Stream pers
Hi,
As discussed by some of us during the No ORM meeting in May, it'd be great
if there was a module ZIP allowing people to easily upgrade Hibernate ORM
in the WildFly version they are using.
Just the other day there was a blog post published [1] describing how to
use Hibernate ORM 5.2 in WF 10,
There is a huge difference in join-fetch and what we detail for "EAGER".
Join-fetch is also an eager fetch. There are 2 pieces of information in
regards to fetching: when, how?
EAGER merely describes when: now.
What you describe as "EAGER" is really a N+1 fetch. So the relation is
fetched immed
I have mentioned this before. We cannot automate this through Gradle (long
story, feel free to see my Gradle Jiras and forum posts for details). And
I am not going to make this a manual step for each and every release.
On Tue, Jun 7, 2016 at 3:42 AM Sanne Grinovero wrote:
> I've seen quite som
If you send a PR I will include it.
On Sun, Jun 5, 2016 at 11:00 AM Sanne Grinovero wrote:
> I just noticed that the org.hibernate.Query interface was deprecated
> in 5.2, with the suggestion to use org.hibernate.query.Query now.
> That's ok, but it seems the "deprecation process" also forced so
it sounds reasonable to me
On 7 June 2016 at 10:57, Vlad Mihalcea wrote:
> To get a picture of why we need this, consider the following example from
> the docs:
>
> Stream persons = session.createQuery(
>"select p " +
>"from Person p " +
>"where p.name like :name" )
> .setParameter(
To get a picture of why we need this, consider the following example from
the docs:
Stream persons = session.createQuery(
"select p " +
"from Person p " +
"where p.name like :name" )
.setParameter( "name", "J%" )
.stream();
Map> callRegistry = persons
.map( row -> Person.class.cast( r
Hi,
While writing documentation for the new 5.2 Query.stream() API, I realized
that we don't return a Stream, but a Stream which could
confuse users.
This is because ScrollableResultsImpl does something like this:
if ( result != null && result.getClass().isArray() ) {
currentRow = (Object[]) r
HHH-10745, runnable test case attached to that issue
(org.hibernate.test.fetchprofiles.cycle.tar.gz).
Thank you
Vladimir
On 06/07/2016 06:00 AM, Gail Badner wrote:
> Please create a Jira issue and attach a runnable test case.
> Thanks,
> Gail
>
> On Thu, Jun 2, 2016 at 5:45 AM, Vladimir Marti
I've seen quite some people struggling with the upgrade to Hibernate
ORM 5.2 as they think that hibernate-entitymanager was either
mistakenly not uploaded, or wasn't synched to Maven Central yet.
Could we restore the pom.xml for this artifact and have it redirect to
hibernate-orm ?
Doing so we'll
18 matches
Mail list logo