kazuyukitanimura commented on code in PR #7400:
URL: https://github.com/apache/arrow-datafusion/pull/7400#discussion_r1325161520
##########
datafusion/core/src/physical_plan/aggregates/row_hash.rs:
##########
@@ -56,6 +65,28 @@ pub(crate) enum ExecutionState {
use super::order::GroupOrdering;
use super::AggregateExec;
+/// This encapsulates the spilling state
+struct SpillState {
+ /// If data has previously been spilled, the locations of the
+ /// spill files (in Arrow IPC format)
+ spills: Vec<NamedTempFile>,
Review Comment:
I will change from `NamedTempFile` to `RefCountedTempFile` once
https://github.com/apache/arrow-datafusion/pull/7538/files is merged
--
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]