bug « Join « JPA Q&A





1. bug with hibernate 3 and implicit join in hql ast parser    forum.hibernate.org

Newbie Joined: Thu Sep 08, 2005 7:52 pm Posts: 4 Hibernate version:3.0.5 Hi im migrating from hibernate 2 to hibernate 3 and several of the hql that where working are not working any more for example the execute of this query: select opp from org.volsystems.db.Opportunity as opp inner join fetch opp.organization , opp.volunteerCenter as vc where opp.statusOpportunity.id = org.volsystems.db.StatusOpportunity.ACTIVE and vc.id ...

2. Full join causes "this may indicate a bug in Hibernate&    forum.hibernate.org

Using Hibernate 3.1 with PostgreSQL 8.0.3 I get the following error whenever I try to use a full join. I can get left and right joins to work but not full joins. [ERROR] [main] 2006-10-13 16:27:55.781 an assertion failure occured (this may indicate a bug in Hibernate, but is more likely due to unsafe use of the session) org.hibernate.AssertionFailure: undefined join ...

3. JOIN TABLE usage scenarios (one is failing... bug?)    forum.hibernate.org

Folks, I am using the following hibernate release(s) org.hibernate hibernate 3.2.6.ga org.hibernate hibernate-commons-annotations 3.3.0.ga org.hibernate hibernate-annotations 3.3.0.ga org.hibernate hibernate-validator 3.0.0.ga Now ths bidirectional mapping usage of annotations worked in 3.2.5 Facility.JAVA @OneToOne(cascade = CascadeType.REFRESH) @HardOneToOne(identity = Identity.OWNER) @JoinTable(name = "join_table_Facility_Mgr", joinColumns = @JoinColumn(name = "manager_fk", insertable = true, updatable = true, nullable = ...