Package com.google.cloud.bigquery
Interface BigQueryDryRunResult
-
- All Known Implementing Classes:
BigQueryDryRunResultImpl
public interface BigQueryDryRunResult
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Parameter>
getQueryParameters()
Returns query parameters for standard SQL queries by extracting undeclare query parameters from the dry run job.Schema
getSchema()
Returns the schema of the results.BigQueryResultStats
getStatistics()
Returns some processing statistics
-
-
-
Method Detail
-
getSchema
@BetaApi Schema getSchema() throws BigQuerySQLException
Returns the schema of the results. Null if the schema is not supplied.- Throws:
BigQuerySQLException
-
getQueryParameters
@BetaApi List<Parameter> getQueryParameters() throws BigQuerySQLException
Returns query parameters for standard SQL queries by extracting undeclare query parameters from the dry run job. See more information: https://developers.google.com/resources/api-libraries/documentation/bigquery/v2/java/latest/com/google/api/services/bigquery/model/JobStatistics2.html#getUndeclaredQueryParameters--- Throws:
BigQuerySQLException
-
getStatistics
@BetaApi BigQueryResultStats getStatistics() throws BigQuerySQLException
Returns some processing statistics- Throws:
BigQuerySQLException
-
-