-
Notifications
You must be signed in to change notification settings - Fork 111
Fix bug of scan aggregate index returning empty non-end continuation #3397
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
pengpeng-lu
wants to merge
31
commits into
FoundationDB:main
Choose a base branch
from
pengpeng-lu:keyvalue_cursor
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 15 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
387a648
save
pengpeng-lu 0fd847e
save
pengpeng-lu 3ce0259
save
pengpeng-lu 78bea95
save
pengpeng-lu aefa82c
save
pengpeng-lu 3fe7ba0
save
pengpeng-lu 1336975
save
pengpeng-lu 44a5cb9
clean
pengpeng-lu cb40b88
save
pengpeng-lu d82d31c
Merge branch 'main' into keyvalue_cursor
pengpeng-lu 8d523c1
add planner configuration
pengpeng-lu d015132
save
pengpeng-lu 22a6e85
save
pengpeng-lu f30c3e3
revert PlannerConfiguration change:
pengpeng-lu cc9567b
add test
pengpeng-lu 09907fe
style
pengpeng-lu 8343661
checkstyle
pengpeng-lu 30cf435
small things
pengpeng-lu 1f27b7e
implementation comments
pengpeng-lu 61ef12b
save
pengpeng-lu 51e3746
save
pengpeng-lu c0c8e72
save
pengpeng-lu b151ab4
style
pengpeng-lu e170e11
set to_old
pengpeng-lu 5cb1ca0
merge conflict
pengpeng-lu dcce7df
save
pengpeng-lu 022dc23
1 test fail
pengpeng-lu 69fcaf1
save in the middle of debugging
pengpeng-lu 7fda4f2
fix test
pengpeng-lu def4939
Merge branch 'main' into keyvalue_cursor
pengpeng-lu 39075d7
merge main
pengpeng-lu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will add comments in the next commit.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm. I'm still not sure this really belongs in the
ExecuteProperties
. The point of theExecuteProperties
configuration is that it's supposed to contain stuff that a user might want to configure differently for other identical invocations of some operation. For example, various limits are in here, which could be applied to different plans. This is different, because for a given plan, it's actually very important that the user correctly serialize/deserialize KV cursor continuations. Which doesn't seem to fit the pattern