(arg1: Expr, arg2: impl Literal)
| 161 | #[doc = "Returns the value of the field with the given name from the union when it's selected, or NULL otherwise"] |
| 162 | #[expect(clippy::needless_pass_by_value)] |
| 163 | pub fn union_extract(arg1: Expr, arg2: impl Literal) -> Expr { |
| 164 | super::union_extract().call(vec![arg1, arg2.lit()]) |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | /// Returns all DataFusion functions defined in this package |
no test coverage detected
searching dependent graphs…