MCPcopy Create free account
hub / github.com/apache/datafusion / human_display

Method human_display

datafusion/expr/src/expr.rs:1607–1609  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 ///

Callers 1

fmtMethod · 0.45

Calls 1

SqlDisplayClass · 0.85

Tested by

no test coverage detected