pub fn wildcard() -> Expr
Expand description
Create an ‘*’ Expr::Wildcard
expression that matches all columns
§Example
let p = wildcard();
assert_eq!(p.to_string(), "*")
pub fn wildcard() -> Expr
Create an ‘*’ Expr::Wildcard
expression that matches all columns
let p = wildcard();
assert_eq!(p.to_string(), "*")