return LiteralExpression.newConstant(null, PDataType.BOOLEAN, firstChild.isDeterministic());
}
Expression e = InListExpression.create(inChildren, ptr);
if (node.isNegate()) {
e = new NotExpression(e);
}
if (node.isStateless()) {
if (!e.evaluate(null, ptr) || ptr.getLength() == 0) {
return LiteralExpression.newConstant(null, e.getDataType(), e.isDeterministic());
}