-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: Problem with "not (a, b) in (select ...)" clause
PostPosted: Mon Dec 01, 2008 1:01 am 
Newbie

Joined: Mon Dec 01, 2008 12:08 am
Posts: 1
Hi all,

I have a simple graph structure like this (in MySQL):

Code:
create table Node(
   id int not null auto_increment,
   name varchar(255),
   primary key(id)
) engine=InnoDB;

create table Edge(
   source int not null,
   target int not null,
   cost int,
   primary key(source, target),
   foreign key (source) references Node(id),
   foreign key (target) references Node(id)
) engine=InnoDB;


(Entities are trivially mapped)

Then I wish to find in the graph all edges that point to a specific node and have no inverse edges (e.g. there are edges 1->2, 2->1 and 3->1; then when consulting node 1, the query finds edge 3->1 since there's no 1->3).

In SQL:

Code:
select source, target, cost
  from Edge
where target = 1
   and (source, target)
       not in
       (select target, source from Edge)


According to the Hibernate documentation (section 14.13), matching tuples with subqueries should work:

Code:
from Cat as cat
where not ( cat.name, cat.color ) in (
    select cat.name, cat.color from DomesticCat cat
)


I tried issuing the following EJBQL query:

Code:
select e
  from Edge e
where e.target.name = #{blah}
   and not (e.target, e.source) in
       (select e.source, e.target from Edge e)


But it translated to:

Code:
select (...)
  from Edge edge0_, Node node1_
where edge0_.target=node1_.id
   and node1_.name = (...)
   and ((edge0_.target, edge0_.source)
        not in
        (select edge2_.source, node1_.id as id8_1_   <-- ???????
           from Edge edge2_, Node node3_
          where edge2_.source=node3_.id))


Which, of course, doesn't not work as intended.

I still haven't looked at the source to try figuring out why the subquery is translated that way. Any hint as to if the problem is in my query, mapping, entities or even Hibernate itself ?

PS: I'm using Hibernate 3.2.4.SP1 and Hibernate EntityManager 3.3.1.GA, the versions that come with JBoss Seam 2.1.0.SP1

PS2: No, I'm not trying to solve combinatorial optimization problems with a relational database, this is just an example ;-)

Thanks in advance.


Top
 Profile  
 
 Post subject: Re: Problem with "not (a, b) in (select ...)" clause
PostPosted: Thu Dec 29, 2011 10:41 am 
Newbie

Joined: Thu Dec 29, 2011 10:28 am
Posts: 1
Hi everyone!
I've got the same problem. Does anyone knows the resolution?


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.