You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
ExecutionProps provides the information needed to lower an Expr to an Arc<dyn PhysicalExpr>. Currently it lives on SessionState where the additional nesting adds to the confusing config situation (#4349)
Describe the solution you'd like
I would like to refactor ExecutionProps to be a trait and passed to create_physical_expr as &dyn ExecutionProps, this could then be implemented by SessionState (or DataFrame#4626)
This would help reduce the config struct proliferation, whilst keeping the existing separation between the crates.
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
ExecutionProps
provides the information needed to lower anExpr
to anArc<dyn PhysicalExpr>
. Currently it lives onSessionState
where the additional nesting adds to the confusing config situation (#4349)Describe the solution you'd like
I would like to refactor
ExecutionProps
to be a trait and passed tocreate_physical_expr
as&dyn ExecutionProps
, this could then be implemented bySessionState
(orDataFrame
#4626)This would help reduce the config struct proliferation, whilst keeping the existing separation between the crates.
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered: