Enum datafusion::logical_plan::Operator [−][src]
pub enum Operator {
Show 21 variants
Eq,
NotEq,
Lt,
LtEq,
Gt,
GtEq,
Plus,
Minus,
Multiply,
Divide,
Modulo,
And,
Or,
Like,
NotLike,
IsDistinctFrom,
IsNotDistinctFrom,
RegexMatch,
RegexIMatch,
RegexNotMatch,
RegexNotIMatch,
}
Expand description
Operators applied to expressions
Variants
Expressions are equal
Expressions are not equal
Left side is smaller than right side
Left side is smaller or equal to right side
Left side is greater than right side
Left side is greater or equal to right side
Addition
Subtraction
Multiplication operator, like *
Division operator, like /
Remainder operator, like %
Logical AND, like &&
Logical OR, like ||
Matches a wildcard pattern
Does not match a wildcard pattern
IS DISTINCT FROM
IS NOT DISTINCT FROM
Case sensitive regex match
Case insensitive regex match
Case sensitive regex not match
Case insensitive regex not match
Trait Implementations
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for Operator
impl UnwindSafe for Operator
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.