forked from facebookincubator/velox
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhance lazy vector consistency check (facebookincubator#9687)
Summary: Pull Request resolved: facebookincubator#9687 A consistency check in lazy vectors to ensure an unloaded lazy vectors cannot be wrapped by two different top level vectors. We recently encountered a bug where this check was triggered in HashProbe. An input lazy vector was temporarily encapsulated before applying a filter, and the same vector was then encapsulated again at the same level while generating output, which triggered a failure in this check. This change adds support for this use case to the consistency check and ensures that HashProbe promptly destroys the temporary vector before encapsulating it again during output generation. Reviewed By: mbasmanova Differential Revision: D56842170 fbshipit-source-id: 65c5f2ad670898a39439351cbed5128c48a1ea2f
- Loading branch information
1 parent
abb94a3
commit 518a808
Showing
6 changed files
with
95 additions
and
16 deletions.
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
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