generateLoadSQL(boolean fullSelect) Generates the load SQL.
Parameters: fullSelect - true if the load entity expressionsshould be fully loaded for all entityfields.
Generates the load SQL.
Parameters: fullSelect - true if the load entity expressionsshould be fully loaded for all entityfields. Otherwise, only the entity idwill be loaded: select o.id from ...It is implemented to optimize the SQLand allow for databases that onlysupport single columns in subqueries.Derby is an example. An additionalcondition to generate only the o.idis the absence of group by. If thereis a group by the full select willalways be generated.See also com.caucho.amber.expr.ExistsExpr the load SQL.