GitHub user alamb added a comment to the discussion: Does DataFusion Support JSON Path Filtering Like `jsonb_path_exists` in PostgreSQL?
I think you can use [`ScalarUDF::call`](https://docs.rs/datafusion/latest/datafusion/logical_expr/struct.ScalarUDF.html#method.call) ```rust let json_path_exist = ScalarUDF::from(Arc::new(impl)); json_path_exist.call(d_col, path) ``` GitHub link: https://github.com/apache/datafusion/discussions/15264#discussioncomment-12543424 ---- This is an automatically sent email for github@datafusion.apache.org. To unsubscribe, please send an email to: github-unsubscr...@datafusion.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org