adriangb commented on code in PR #22698:
URL: https://github.com/apache/datafusion/pull/22698#discussion_r3562222782


##########
datafusion/physical-plan/src/filter.rs:
##########
@@ -98,6 +99,10 @@ pub struct FilterExec {
     batch_size: usize,
     /// Number of rows to fetch
     fetch: Option<usize>,
+    /// Measurements and trial verdicts shared by all partition streams,
+    /// used by adaptive conjunct reordering (see [`AdaptiveConjunction`]) so
+    /// the streams learn as one. Fresh per plan node; never affects the plan.
+    adaptive_stats: Arc<AdaptiveFilterShared>,

Review Comment:
   I implemented `reset_state()` which should address this.



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

Reply via email to