-
Notifications
You must be signed in to change notification settings - Fork 411
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
support comparison semantics for batch serialize/deserialize of Column #9756
Merged
+2,505
−814
Merged
Changes from 18 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
e4b57c8
basically done
guo-shaoge 1574825
fix compilation
guo-shaoge 4203af0
fmt
guo-shaoge 29021b2
compile && nt_optimization
guo-shaoge a3cd638
unit test
guo-shaoge d155847
refine
guo-shaoge d3b0300
fix
guo-shaoge e8564aa
Merge branch 'master' into batch_serialize
guo-shaoge abd55ac
test new impl
guo-shaoge 4cac26a
Merge branch 'batch_serialize' of github.com:guo-shaoge/tiflash into …
guo-shaoge c07d13a
test ci impl
guo-shaoge 086b630
Revert "test ci impl"
guo-shaoge db8d490
Revert "test new impl"
guo-shaoge 84ee65b
change name
guo-shaoge 3800d0f
is_fast -> ensure_unique
guo-shaoge a6fac1f
batchSerializeImpl -> serializeToPosImpl
guo-shaoge 19982d3
ci
guo-shaoge 47cdf91
refine
guo-shaoge 1342f6a
Merge branch 'master' of github.com:pingcap/tiflash into batch_serialize
guo-shaoge 2a6a5f5
refine
guo-shaoge 7d910e5
refine
guo-shaoge 6a2b333
refine
guo-shaoge 82059d6
tmp save
guo-shaoge cff4dc2
sortKey no virtual function call
guo-shaoge 2b32e79
avoid sortKey virtual function call
guo-shaoge 25406de
fmt
guo-shaoge a9f86b0
refine
guo-shaoge 4c6f931
refine
guo-shaoge 5283e25
fix
guo-shaoge 8ee2a63
refine
guo-shaoge 32a9e9d
refine
guo-shaoge f6c8115
add terminating zero when serialize
guo-shaoge 04cd9f5
Merge branch 'master' into batch_serialize
ti-chi-bot[bot] 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 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
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.
Would it make more sense to rename
countSerializeByteSizeUnique
tocountSerializeUniqueByteSize
for better readability?Similarly, the name for other methods could follow the same pattern. E.g.
serializeToPosUnique
toserializeUniqueToPos
anddeserializeAndInsertFromPosUnique
todeserializeUniqueAndInsertFromPos
.