INTERNAL
Return a TopLink expression by 'OR'ing the expressions from the left and right nodes
// Get the left expression
Expression leftExpr = getLeft().generateExpression(context);
leftExpr = appendOuterScopeVariableJoins(
leftExpr, leftOuterScopeVariables, context);
Expression rightExpr = getRight().generateExpression(context);
rightExpr = appendOuterScopeVariableJoins(
rightExpr, rightOuterScopeVariables, context);
// Or it with whatever the right expression is
return leftExpr.or(rightExpr);