datafusion_expr::expr_fn

Function wildcard

Source
pub fn wildcard() -> Expr
Expand description

Create an ‘*’ Expr::Wildcard expression that matches all columns

§Example

let p = wildcard();
assert_eq!(p.to_string(), "*")