You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I put a row with key 56b87a4949c4419288c62b84b865c2e8.
I .scan('tablename') and see that row in the results.
I get nothing when I do this:
.scan('tablename, scanrange=Range(
srow='56b87a4949c4419288c62b84b865c2e8',
erow='56b87a4949c4419288c62b84b865c2e8\0',
sinclude=True))
It works when I do this:
.scan('tablename, scanrange=Range(
srow='56b87a4949c4419288c62b84b865c2e7', ## NOTE: decremented start key
erow='56b87a4949c4419288c62b84b865c2e8\0',
sinclude=True))
So it looks like 'start inclusive' scan doesn't actually work and Accumulo is always doing '>' but not '>='
The text was updated successfully, but these errors were encountered:
There is what looks like an attempted workaround for this in the pyaccumulo Range constructor, but it's not helpful in other contexts where you can use Range, e.g. non-batch Scanner objects.
I put a row with key 56b87a4949c4419288c62b84b865c2e8.
I .scan('tablename') and see that row in the results.
I get nothing when I do this:
.scan('tablename, scanrange=Range(
srow='56b87a4949c4419288c62b84b865c2e8',
erow='56b87a4949c4419288c62b84b865c2e8\0',
sinclude=True))
It works when I do this:
.scan('tablename, scanrange=Range(
srow='56b87a4949c4419288c62b84b865c2e7', ## NOTE: decremented start key
erow='56b87a4949c4419288c62b84b865c2e8\0',
sinclude=True))
So it looks like 'start inclusive' scan doesn't actually work and Accumulo is always doing '>' but not '>='
The text was updated successfully, but these errors were encountered: