return "Divide" + "[" + DataType.findTypeName(resultType) + "]" +" - " + mKey.toString();
}
@Override
public Result getNext(Double d) throws ExecException {
Result r = accumChild(null, d);
if (r != null) {
return r;
}
byte status;
Result res;
Double left = null, right = null;
res = lhs.getNext(left);
status = res.returnStatus;
if(status != POStatus.STATUS_OK || res.result == null) {
return res;