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 '>='
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 '>='