Apply an alias
(self, alias: impl Into<TableReference>)
| 676 | |
| 677 | /// Apply an alias |
| 678 | pub fn alias(self, alias: impl Into<TableReference>) -> Result<Self> { |
| 679 | subquery_alias(Arc::unwrap_or_clone(self.plan), alias).map(Self::new) |
| 680 | } |
| 681 | |
| 682 | /// Add missing sort columns to all downstream projection |
| 683 | /// |