Create an '*' [`Expr::Wildcard`] expression that matches all columns # Example ```rust # use datafusion_expr::{wildcard}; let p = wildcard(); assert_eq!(p.to_string(), "*") ```
()
| 139 | /// assert_eq!(p.to_string(), "*") |
| 140 | /// ``` |
| 141 | pub fn wildcard() -> SelectExpr { |
| 142 | SelectExpr::Wildcard(WildcardOptions::default()) |
| 143 | } |
| 144 | |
| 145 | /// Create an '*' [`Expr::Wildcard`] expression with the wildcard options |
| 146 | pub fn wildcard_with_options(options: WildcardOptions) -> SelectExpr { |
searching dependent graphs…