Struct google_bigquery2::JobStatistics2[][src]

pub struct JobStatistics2 {
    pub total_slot_ms: Option<String>,
    pub query_plan: Option<Vec<ExplainQueryStage>>,
    pub estimated_bytes_processed: Option<String>,
    pub statement_type: Option<String>,
    pub total_bytes_billed: Option<String>,
    pub total_bytes_processed: Option<String>,
    pub cache_hit: Option<bool>,
    pub ddl_operation_performed: Option<String>,
    pub num_dml_affected_rows: Option<String>,
    pub undeclared_query_parameters: Option<Vec<QueryParameter>>,
    pub billing_tier: Option<i32>,
    pub ddl_target_table: Option<TableReference>,
    pub referenced_tables: Option<Vec<TableReference>>,
    pub schema: Option<TableSchema>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

[Output-only] Slot-milliseconds for the job.

[Output-only] Describes execution plan for the query.

[Output-only] The original estimate of bytes processed for the job.

[Output-only, Experimental] The type of query statement, if valid. Possible values (new values might be added in the future): "SELECT": SELECT query. "INSERT": INSERT query; see https://cloud.google.com/bigquery/docs/reference/standard-sql/data-manipulation-language "UPDATE": UPDATE query; see https://cloud.google.com/bigquery/docs/reference/standard-sql/data-manipulation-language "DELETE": DELETE query; see https://cloud.google.com/bigquery/docs/reference/standard-sql/data-manipulation-language "CREATE_TABLE": CREATE [OR REPLACE] TABLE without AS SELECT. "CREATE_TABLE_AS_SELECT": CREATE [OR REPLACE] TABLE ... AS SELECT ... "DROP_TABLE": DROP TABLE query. "CREATE_VIEW": CREATE [OR REPLACE] VIEW ... AS SELECT ... "DROP_VIEW": DROP VIEW query.

[Output-only] Total bytes billed for the job.

[Output-only] Total bytes processed for the job.

[Output-only] Whether the query result was fetched from the query cache.

[Output-only, Experimental] The DDL operation performed, possibly dependent on the pre-existence of the DDL target. Possible values (new values might be added in the future): "CREATE": The query created the DDL target. "SKIP": No-op. Example cases: the query is CREATE TABLE IF NOT EXISTS while the table already exists, or the query is DROP TABLE IF EXISTS while the table does not exist. "REPLACE": The query replaced the DDL target. Example case: the query is CREATE OR REPLACE TABLE, and the table already exists. "DROP": The query deleted the DDL target.

[Output-only] The number of rows affected by a DML statement. Present only for DML statements INSERT, UPDATE or DELETE.

[Output-only, Experimental] Standard SQL only: list of undeclared query parameters detected during a dry run validation.

[Output-only] Billing tier for the job.

[Output-only, Experimental] The DDL target table. Present only for CREATE/DROP TABLE/VIEW queries.

[Output-only, Experimental] Referenced tables for the job. Queries that reference more than 50 tables will not have a complete list.

[Output-only, Experimental] The schema of the results. Present only for successful dry run of non-legacy SQL queries.

Trait Implementations

impl Default for JobStatistics2
[src]

Returns the "default value" for a type. Read more

impl Clone for JobStatistics2
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for JobStatistics2
[src]

Formats the value using the given formatter. Read more

impl Part for JobStatistics2
[src]

Auto Trait Implementations