-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix GetMergeOperands in ReadOnlyDB and SecondaryDB (#13340)
Summary: Fixing the GetMergeOperands() in ReadOnlyDB and SecondaryDB as reported in #13243. Refactor in #11799 introduced this regression. Follow ups to come - Large Result Optimization (done in #10458 ) for ReadOnlyDB and SecondaryDB - Stress Test / Crash Test coverage - Consider removing some duplicate logic between ReadOnlyDB's GetImpl() and SecondaryDB's `GetImpl()`. The only difference is between acquiring/referencing Superversion. Pull Request resolved: #13340 Test Plan: `DBMergeOperandTest` and `DBSecondaryTest` updated ``` ./db_merge_operand_test --gtest_filter="*GetMergeOperandsBasic*" ``` ``` ./db_secondary_test -- --gtest_filter="*GetMergeOperands*" ``` Reviewed By: ltamasi Differential Revision: D68791652 Pulled By: jaykorean fbshipit-source-id: 760925e257ab10993c207094718dc0659822ae64
- Loading branch information
1 parent
f37ce33
commit 2e0dc21
Showing
5 changed files
with
86 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fixed GetMergeOperands() API in ReadOnlyDB and SecondaryDB |