- 来自 PR [8354](https://github.com/apache/arrow-datafusion/pull/8354/files) ```rust /// Splits a conjunctive [`Expr`] such as `A AND B AND C` => `[A, B, C]` /// /// See [`split_conjunction_owned`] for more details and an example. #[deprecated( since = "34.0.0", note = "use `datafusion_expr::utils::split_conjunction` instead" )] pub fn split_conjunction(expr: &Expr) -> Vec<&Expr> { expr_utils::split_conjunction(expr) } ```