jdye64 commented on code in PR #3298:
URL: https://github.com/apache/arrow-datafusion/pull/3298#discussion_r958584662
##########
datafusion/expr/src/expr.rs:
##########
@@ -100,6 +100,27 @@ pub enum Expr {
/// Right-hand side of the expression
right: Box<Expr>,
},
+ /// LIKE expression
+ Like {
+ negated: bool,
+ expr: Box<Expr>,
+ pattern: Box<Expr>,
Review Comment:
Curious, would `Expr` map to a `Expr::ScalarValue` for a pattern, aka would
the user expect a scalar value, or would it map to some sort of function? Just
curious what to expect here when using this.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]