Package com.google.cloud.bigquery
Class BigQueryDryRunResultImpl
- java.lang.Object
-
- com.google.cloud.bigquery.BigQueryDryRunResultImpl
-
- All Implemented Interfaces:
BigQueryDryRunResult
public class BigQueryDryRunResultImpl extends Object implements BigQueryDryRunResult
-
-
Method Summary
All Methods Instance Methods Concrete 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.SchemagetSchema()Returns the schema of the results.BigQueryResultStatsgetStatistics()Returns some processing statistics
-
-
-
Method Detail
-
getSchema
public Schema getSchema() throws BigQuerySQLException
Description copied from interface:BigQueryDryRunResultReturns the schema of the results. Null if the schema is not supplied.- Specified by:
getSchemain interfaceBigQueryDryRunResult- Throws:
BigQuerySQLException
-
getQueryParameters
public List<Parameter> getQueryParameters() throws BigQuerySQLException
Description copied from interface:BigQueryDryRunResultReturns 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--- Specified by:
getQueryParametersin interfaceBigQueryDryRunResult- Throws:
BigQuerySQLException
-
getStatistics
public BigQueryResultStats getStatistics() throws BigQuerySQLException
Description copied from interface:BigQueryDryRunResultReturns some processing statistics- Specified by:
getStatisticsin interfaceBigQueryDryRunResult- Throws:
BigQuerySQLException
-
-