-
Notifications
You must be signed in to change notification settings - Fork 569
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
Inconsistent data on iterator GetKey() #518
Comments
The The way to use the iterator result is: while (iterator.GetNext(out RecordInfo recordInfo))
{
ref var key = ref iterator.GetKey(); See here for an example. |
In this PR, we add a while (iter.GetNext(out var recordInfo) && !recordInfo.Tombstone) {
var spanByteAndMemory = iter.GetKey().Deserialize().ToSpanByteAndMemory(); |
Thank you for the explanation. Until the |
Yes that's a valid technique as well. |
We're scannig the log like so:
We noticed unexpected behavior in that the content of the
SpanByte
key was not what we expected. Using the VS Immediate Window, the following can be observed:How can that be, and what can we do about it?
The text was updated successfully, but these errors were encountered: