Package io.delta.kernel.expressions
Class And
Object
io.delta.kernel.expressions.ScalarExpression
io.delta.kernel.expressions.Predicate
io.delta.kernel.expressions.And
- All Implemented Interfaces:
Expression
AND
expression
Definition:
- Logical
expr1
ANDexpr2
on two inputs. - Requires both left and right input expressions of type
Predicate
. - Result is null when both inputs are null, or when one input is null and the other is
true
.
- Since:
- 3.0.0
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class io.delta.kernel.expressions.ScalarExpression
getChildren, getName
-
Constructor Details
-
And
-
-
Method Details
-
getLeft
- Returns:
- Left side operand.
-
getRight
- Returns:
- Right side operand.
-