Skip to content
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

chore: update method doc for v1 ReadRowsRequest methods #1389

Merged
merged 1 commit into from
Oct 28, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,7 @@ public com.google.protobuf.ByteString getReadStreamBytes() {
*
*
* <pre>
* The offset requested must be less than the last row read from Read.
* Requesting a larger offset is undefined. If not specified, start reading
* from offset zero.
* Position in the stream.
* </pre>
*
* <code>int64 offset = 2;</code>
Expand Down Expand Up @@ -643,9 +641,7 @@ public Builder setReadStreamBytes(com.google.protobuf.ByteString value) {
*
*
* <pre>
* The offset requested must be less than the last row read from Read.
* Requesting a larger offset is undefined. If not specified, start reading
* from offset zero.
* Position in the stream.
* </pre>
*
* <code>int64 offset = 2;</code>
Expand All @@ -660,7 +656,7 @@ public long getOffset() {
*
*
* <pre>
* The offset requested must be less than the last row read from Read.
* The offset requested must be less than the maximum row previously read in the stream.
* Requesting a larger offset is undefined. If not specified, start reading
* from offset zero.
* </pre>
Expand All @@ -680,9 +676,7 @@ public Builder setOffset(long value) {
*
*
* <pre>
* The offset requested must be less than the last row read from Read.
* Requesting a larger offset is undefined. If not specified, start reading
* from offset zero.
* Reset offset to zero.
* </pre>
*
* <code>int64 offset = 2;</code>
Expand Down