This is an automated email from the ASF dual-hosted git repository.
agrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion-python.git
The following commit(s) were added to refs/heads/main by this push:
new 0a6743c Make PyExecutionPlan.plan public (#156)
0a6743c is described below
commit 0a6743c2a7f27015890c5546efda2d4e85d45a97
Author: Andy Grove <[email protected]>
AuthorDate: Sat Jan 28 11:15:27 2023 -0700
Make PyExecutionPlan.plan public (#156)
---
src/physical_plan.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/physical_plan.rs b/src/physical_plan.rs
index 01bf3ee..340d527 100644
--- a/src/physical_plan.rs
+++ b/src/physical_plan.rs
@@ -23,7 +23,7 @@ use pyo3::prelude::*;
#[pyclass(name = "ExecutionPlan", module = "datafusion", subclass)]
#[derive(Debug, Clone)]
pub struct PyExecutionPlan {
- pub(crate) plan: Arc<dyn ExecutionPlan>,
+ pub plan: Arc<dyn ExecutionPlan>,
}
impl PyExecutionPlan {