Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ public static Builder newBuilder() {
@Nullable
public abstract Schema getSchema();

/**
* Returns the total number of rows in the complete result set, which can be more than the number
* of rows in the first page of results. If no rows are returned, this value can still be greater
* than 0 if any rows were affected by the query, such as INSERT, UPDATE, or DELETE queries.
*/
public abstract long getTotalRows();

public abstract Page<FieldValueList> getPageNoSchema();
Expand Down