Package com.google.cloud.bigquery
Interface BigQueryResult<T>
-
- All Known Implementing Classes:
BigQueryResultImpl
public interface BigQueryResult<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BigQueryResultStats
getBigQueryResultStats()
ResultSet
getResultSet()
Schema
getSchema()
Returns the schema of the results.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.
-
-
-
Method Detail
-
getSchema
Schema getSchema()
Returns the schema of the results.
-
getTotalRows
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.
-
getResultSet
ResultSet getResultSet()
-
getBigQueryResultStats
BigQueryResultStats getBigQueryResultStats()
-
-