-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
upgrade to use google protobuf #9190
Open
mangalaman93
wants to merge
6
commits into
main
Choose a base branch
from
aman/pb
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
+8,000
−25,692
Conversation
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
github-actions
bot
added
area/testing
Testing related issues
area/schema
Issues related to the schema language and capabilities.
area/graphql
Issues related to GraphQL support on Dgraph.
area/bulk-loader
Issues related to bulk loading.
area/core
internal mechanisms
go
Pull requests that update Go code
labels
Oct 7, 2024
shivaji-kharse
force-pushed
the
aman/pb
branch
from
October 8, 2024 10:34
a71470b
to
8367466
Compare
github-actions
bot
added
area/enterprise
Related to proprietary features
area/enterprise/backup
Related to binary backups
labels
Oct 8, 2024
shivaji-kharse
force-pushed
the
aman/pb
branch
from
October 8, 2024 10:35
8367466
to
b4c3780
Compare
shivaji-kharse
force-pushed
the
aman/pb
branch
4 times, most recently
from
October 14, 2024 09:31
42b8fa8
to
5f181e3
Compare
shivaji-kharse
force-pushed
the
aman/pb
branch
2 times, most recently
from
October 15, 2024 11:32
bc55364
to
1470a02
Compare
mangalaman93
commented
Oct 17, 2024
@@ -419,7 +419,7 @@ func (p ParsedKey) ToBackupKey() *pb.BackupKey { | |||
key.Attr = attr | |||
key.Uid = p.Uid | |||
key.StartUid = p.StartUid | |||
key.Term = p.Term | |||
key.Term = []byte(p.Term) |
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.
This may affect performance
@@ -455,7 +455,7 @@ func FromBackupKey(backupKey *pb.BackupKey) []byte { | |||
case pb.BackupKey_DATA: | |||
key = DataKey(attr, backupKey.Uid) | |||
case pb.BackupKey_INDEX: | |||
key = IndexKey(attr, backupKey.Term) | |||
key = IndexKey(attr, string(backupKey.Term)) |
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.
same
shivaji-kharse
force-pushed
the
aman/pb
branch
4 times, most recently
from
October 28, 2024 05:57
2bb0dda
to
941afc0
Compare
shivaji-kharse
force-pushed
the
aman/pb
branch
2 times, most recently
from
November 4, 2024 05:48
12dae9d
to
e41ce54
Compare
shivaji-kharse
force-pushed
the
aman/pb
branch
2 times, most recently
from
November 12, 2024 11:34
f4f3c71
to
83e12df
Compare
github-actions
bot
added
the
area/integrations
Related to integrations with other projects.
label
Nov 13, 2024
shivaji-kharse
force-pushed
the
aman/pb
branch
3 times, most recently
from
November 13, 2024 09:43
6954d6a
to
c749b0e
Compare
shivaji-kharse
force-pushed
the
aman/pb
branch
from
November 14, 2024 06:51
c749b0e
to
2685a1d
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/bulk-loader
Issues related to bulk loading.
area/core
internal mechanisms
area/enterprise/backup
Related to binary backups
area/enterprise
Related to proprietary features
area/graphql
Issues related to GraphQL support on Dgraph.
area/integrations
Related to integrations with other projects.
area/schema
Issues related to the schema language and capabilities.
area/testing
Testing related issues
go
Pull requests that update Go code
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.
inspired from #7313