Closed
Description
this issue appear after #3262.
-
The
scan
request requires the client to explicitly set thehas_next
in the requestScanCursor
to true, which is unreasonable. The value ofhas_next
should not allow the client to parameterize. -
When client call
scan
interface for the first time, client needs to set next_cursor to"".getBytes
to scan from the beginning. I suggest to change"".getBytes
tonull
, then clients will not need to explicitly set thenext_cursor
.