* match, we use the left operand's type as the "judge", assuming that they
* are compatible, as also the case with DB2.
*/
TypeId judgeTypeId = leftOperand.getTypeServices().getTypeId();
DataValueDescriptor judgeODV = null; //no judge, no argument
if (! rightOperandList.allSamePrecendence(judgeTypeId.typePrecedence()))
judgeODV = (DataValueDescriptor) judgeTypeId.getNull();
//Sort the list in ascending order
rightOperandList.sortInAscendingOrder(judgeODV);
isOrdered = true;