Return the name to use for the specific Expr
(&self)
| 1768 | |
| 1769 | /// Return the name to use for the specific Expr |
| 1770 | pub fn name_for_alias(&self) -> Result<String> { |
| 1771 | Ok(self.schema_name().to_string()) |
| 1772 | } |
| 1773 | |
| 1774 | /// Ensure `expr` has the name as `original_name` by adding an |
| 1775 | /// alias if necessary. |
no test coverage detected