I am working with full join on one-to-many between Vendor and Customer, i have got the following exception:
Exception in thread "main" org.hibernate.AssertionFailure: undefined join type 23
i wrote hql logic as follows:
String s="select v.vendorname,c.customername from VendorPojo v full join v.children c"; Query qry=ses.createQuery(s); Iterator it=qry.iterate(); while(it.hasNext()) { Object row[]=(Object[])it.next(); System.out.println(row[0]+" "+row[1]); } ses.close();
It worked fine with left join, right join and join. but its not with full join. please suggest me the solution. thanks in advance.
|