Standing-Man commented on code in PR #19672:
URL: https://github.com/apache/datafusion/pull/19672#discussion_r2670521078
##########
datafusion/expr/src/planner.rs:
##########
@@ -369,9 +369,9 @@ impl PlannedRelation {
#[derive(Debug)]
pub enum RelationPlanning {
/// The relation was successfully planned by an extension planner
- Planned(PlannedRelation),
+ Planned(Box<PlannedRelation>),
Review Comment:
Without this breaking API change, the Clippy check would warn with
`clippy::large-enum-variant`, indicating that the entire enum is at least 624
bytes.
--
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]