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.Schema
getSchema()
Returns the schema of the results.BigQueryResultStats
getStatistics()
Returns some processing statistics
-
-
-
Method Detail
-
getSchema
public Schema getSchema() throws BigQuerySQLException
Description copied from interface:BigQueryDryRunResult
Returns the schema of the results. Null if the schema is not supplied.- Specified by:
getSchema
in interfaceBigQueryDryRunResult
- Throws:
BigQuerySQLException
-
getQueryParameters
public List<Parameter> getQueryParameters() throws BigQuerySQLException
Description copied from interface:BigQueryDryRunResult
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--- Specified by:
getQueryParameters
in interfaceBigQueryDryRunResult
- Throws:
BigQuerySQLException
-
getStatistics
public BigQueryResultStats getStatistics() throws BigQuerySQLException
Description copied from interface:BigQueryDryRunResult
Returns some processing statistics- Specified by:
getStatistics
in interfaceBigQueryDryRunResult
- Throws:
BigQuerySQLException
-
-