MCPcopy Create free account
hub / github.com/apache/datafusion / wildcard

Function wildcard

datafusion/expr/src/expr_fn.rs:141–143  ·  view source on GitHub ↗

Create an '*' [`Expr::Wildcard`] expression that matches all columns # Example ```rust # use datafusion_expr::{wildcard}; let p = wildcard(); assert_eq!(p.to_string(), "*") ```

()

Source from the content-addressed store, hash-verified

139/// assert_eq!(p.to_string(), "*")
140/// ```
141pub fn wildcard() -> SelectExpr {
142 SelectExpr::Wildcard(WildcardOptions::default())
143}
144
145/// Create an '*' [`Expr::Wildcard`] expression with the wildcard options
146pub fn wildcard_with_options(options: WildcardOptions) -> SelectExpr {

Callers 1

select_allFunction · 0.85

Calls 1

WildcardClass · 0.85

Tested by 1

select_allFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…