Hi all...
When I specify hibernate.use_outer_join=false, does this mean that Hibernate will never generate a SQL query that uses outer joins? If so, this doesn't seem to be working for Hibernate 2.1.2 against Oracle when using joined-subclass and attempting to retrieve a set of these subclasses based on a superclass.
For example, if I have FooA and FooB which extends FooBase, and I have another object Bar that has a set of FooBase objects, attempting to iterate through this set produces SQL that uses outer joins.
Is this the expected behavior?
Do most people enable outer joins fetching? Is there a set of general guidelines when you would and would not enable it?
Thanks,
-Mark
|