tustvold commented on code in PR #4679:
URL: https://github.com/apache/arrow-datafusion/pull/4679#discussion_r1053294869


##########
datafusion/core/src/dataframe.rs:
##########
@@ -714,6 +737,12 @@ impl DataFrame {
         }
     }
 
+    /// Convert a prepare logical plan into its inner logical plan with all 
params replaced with their corresponding values
+    pub fn with_param_values(self, param_values: Vec<ScalarValue>) -> 
Result<Self> {
+        let plan = self.plan.with_param_values(param_values)?;

Review Comment:
   I plan to move this off `LogicalPlan` and onto `LogicalPlanBuilder` in a 
subsequent PR, to be consistent with the rest of the system



-- 
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]

Reply via email to