Interface BigQueryResult<T> (2.39.1)

public interface BigQueryResult<T>

Type Parameter

Name Description
T

Methods

getBigQueryResultStats()

public abstract BigQueryResultStats getBigQueryResultStats()
Returns
Type Description
BigQueryResultStats

getResultSet()

public abstract ResultSet getResultSet()
Returns
Type Description
ResultSet

getSchema()

public abstract Schema getSchema()

Returns the schema of the results.

Returns
Type Description
Schema

getTotalRows()

public abstract long getTotalRows()

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. This might return -1 if the query is long running and the job is not complete at the time this object is returned.

Returns
Type Description
long