Create an in_list expression
(expr: Expr, list: Vec<Expr>, negated: bool)
| 244 | |
| 245 | /// Create an in_list expression |
| 246 | pub fn in_list(expr: Expr, list: Vec<Expr>, negated: bool) -> Expr { |
| 247 | Expr::InList(InList::new(Box::new(expr), list, negated)) |
| 248 | } |
| 249 | |
| 250 | /// Create an EXISTS subquery expression |
| 251 | pub fn exists(subquery: Arc<LogicalPlan>) -> Expr { |
searching dependent graphs…