Struct google_bigquery2::JobStatistics2 [] [src]

pub struct JobStatistics2 {
    pub query_plan: Option<Vec<ExplainQueryStage>>,
    pub statement_type: Option<String>,
    pub total_bytes_billed: Option<String>,
    pub total_bytes_processed: Option<String>,
    pub cache_hit: Option<bool>,
    pub undeclared_query_parameters: Option<Vec<QueryParameter>>,
    pub referenced_tables: Option<Vec<TableReference>>,
    pub billing_tier: Option<i32>,
    pub num_dml_affected_rows: Option<String>,
    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, Experimental] Describes execution plan for the query.

[Output-only, Experimental] The type of query statement, if valid.

[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] Standard SQL only: list of undeclared query parameters detected during a dry run validation.

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

[Output-only] Billing tier for the job.

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

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

Trait Implementations

impl Debug for JobStatistics2
[src]

Formats the value using the given formatter.

impl Clone for JobStatistics2
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for JobStatistics2
[src]

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

impl Part for JobStatistics2
[src]