hi
i have a query where 
q = ...q.initial
q = q.join( some_link_name )
...q.otherstuff
q = q.add_entity( target_klas_of_the_above_link)
...
this used to work ok, but recently it went doing cartesian products 
because the join made itself an alias.

i made it into:
q = ...q.initial
q = q.add_entity( target_klas_of_the_above_link)
q = q.join( some_link_name )
...q.otherstuff

and this seems to work.

anything fishy here? 

ciao
svilen

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to