berkaysynnada commented on code in PR #6566:
URL: https://github.com/apache/arrow-datafusion/pull/6566#discussion_r1221143198
##########
datafusion/core/src/execution/context.rs:
##########
@@ -518,7 +518,7 @@ impl SessionContext {
let physical = DataFrame::new(self.state(), input);
let batches: Vec<_> = physical.collect_partitioned().await?;
- let table = Arc::new(MemTable::try_new(schema, batches)?);
+ let table = Arc::new(MemTable::new_not_registered(schema,
batches));
Review Comment:
Yes, my first suggestion is to use longer version of the name in planner
(what is done in the LogicalPlan). However, there need to be many changes in
tests, and the BoundedWindowAggExec lines may become too long. If it is not a
problem, we can solve the issue like
[that](https://github.com/apache/arrow-datafusion/pull/6566#issuecomment-1580178810)
--
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]