pub fn wildcard() -> Expr
Expand description

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

Example

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