gene-bordegaray commented on code in PR #21832:
URL: https://github.com/apache/datafusion/pull/21832#discussion_r3138597371
##########
datafusion/core/tests/physical_optimizer/pushdown_utils.rs:
##########
@@ -278,20 +285,39 @@ impl TestScanBuilder {
}
pub fn with_batches(mut self, batches: Vec<RecordBatch>) -> Self {
- self.batches = batches;
+ self.partition_batches = vec![batches];
+ self
+ }
+
+ pub fn with_partition_batches(
+ mut self,
+ partition_batches: Vec<Vec<RecordBatch>>,
+ ) -> Self {
+ self.partition_batches = partition_batches;
Review Comment:
did this to eliminate review churn but can consolidate
--
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]