Return a reference to the unoptimized [`LogicalPlan`] that comprises this DataFrame. See [`Self::into_unoptimized_plan`] for more details.
(&self)
| 1666 | /// |
| 1667 | /// See [`Self::into_unoptimized_plan`] for more details. |
| 1668 | pub fn logical_plan(&self) -> &LogicalPlan { |
| 1669 | &self.plan |
| 1670 | } |
| 1671 | |
| 1672 | /// Returns both the [`LogicalPlan`] and [`SessionState`] that comprise this [`DataFrame`] |
| 1673 | pub fn into_parts(self) -> (SessionState, LogicalPlan) { |
no outgoing calls