Human readable display formatting for this expression. This function is primarily used in printing the explain tree output, (e.g. `EXPLAIN FORMAT TREE `), providing a readable format to show how expressions are used in physical and logical plans. See the [`Expr`] for other ways to format expressions Note this format is intended for human consumption rather than SQL for other systems. If y
(&self)
| 1605 | /// println!("{}", expr.human_display()); |
| 1606 | /// ``` |
| 1607 | pub fn human_display(&self) -> impl Display + '_ { |
| 1608 | SqlDisplay(self) |
| 1609 | } |
| 1610 | |
| 1611 | /// Returns the qualifier and the schema name of this expression. |
| 1612 | /// |