-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
106459: colexec: close operators at the end of colexec tests r=yuzefovich,michae2 a=michae2 Fixes: #106119 **colcontainer: close PDQ during TestPartitionedDiskQueueSimulatedExternal** Close the `PartitionedDiskQueue` at the end of `TestPartitionedDiskQueueSimulatedExternal/HashJoin`. Release note: None --- **colexecutils: close SpillingBuffer during TestSpillingBuffer** Release note: None --- **colexec: make some operators implement colexecop.Closer interface** This commit makes the following adjustments that fix "leaked files" in the disk-spilling tests: - `orderedDistinct` now implements `colexecop.Closer` (needed for `TestExternalDistinct`) - `orderedAggregator` and `distinctChainOps` now implement `colexecop.Closer` (needed for `TestExternalHashAggregator`) - `TestCrossJoiner` is adjusted to explicitly close all closers when non-empty ON expression is used (in this case we have selection and projection operators on top of the cross joiner which currently don't implement the `Closer` interface). Release note: None Co-authored-by: Michael Erickson <[email protected]> Co-authored-by: Yahor Yuzefovich <[email protected]>
- Loading branch information
Showing
5 changed files
with
55 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters