-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
Disallow the insertion of empty keys #17
Comments
I think we should disallow the insertion of empty keys. |
Agreed. It makes no sense. |
andybons
changed the title
Check handling of empty keys
Disallow the insertion of empty keys
Jun 3, 2014
Also agree. |
@Tobstar87 wanna tackle this? up to you :) Just assign to yourself if so. |
soniabhishek
pushed a commit
to soniabhishek/cockroach
that referenced
this issue
Feb 15, 2017
logging fluID in some error
pav-kv
pushed a commit
to pav-kv/cockroach
that referenced
this issue
Mar 5, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From @Tobstar87:
I'm wondering if we allow empty keys to be inserted. The rockdb handler doesn't handle it very well, it will crash whenever encountering Key("") for anything that's not an insert as it seeks to &start[0] (similarly to my recent bug fix in rocksdb.scan()).
Either we'll have to disallow that key or treat it differently.
The text was updated successfully, but these errors were encountered: