abhiaagarwal opened a new issue, #19564: URL: https://github.com/apache/datafusion/issues/19564
### Is your feature request related to a problem or challenge? I'm trying to remove some explicit `DataFrame` references in `delta-rs`' codebase to operate directly on Logical Plans instead, so we can stream and materialize later in the process. Most methods on `DataFrame` are a wrapper around `LogicalPlan`, except for the `with_column`function. ### Describe the solution you'd like I propose that we add a new trait, `LogicalPlanExt`, that adds convenience methods `with_column` that performs the exact operations that `DataFrame` is using. https://github.com/apache/datafusion/blob/d13d89129b77d8d251e3ac09e95009340ad3ab72/datafusion/core/src/dataframe/mod.rs#L2135-L2187 This also helps `DataFrame` become a loose wrapper around `LogicalPlan` and lets the logic live in `datafusion_expr` ### Describe alternatives you've considered N/A ### Additional context N/A -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
