We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daeac53 commit 42f7b07Copy full SHA for 42f7b07
src/expr.rs
@@ -190,7 +190,7 @@ impl PyExpr {
190
/// Returns the name of this expression as it should appear in a schema. This name
191
/// will not include any CAST expressions.
192
fn display_name(&self) -> PyResult<String> {
193
- Ok(self.expr.display_name()?)
+ Ok(format!("{}", self.expr.schema_name()))
194
}
195
196
/// Returns a full and complete string representation of this expression.
0 commit comments