Struct google_bigquery2::ViewDefinition [] [src]

pub struct ViewDefinition {
    pub query: Option<String>,
    pub use_legacy_sql: Option<bool>,
    pub user_defined_function_resources: Option<Vec<UserDefinedFunctionResource>>,
}

There is no detailed description.

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

Fields

[Required] A query that BigQuery executes when the view is referenced.

[Experimental] Specifies whether to use BigQuery's legacy SQL for this view. The default value is true. If set to false, the view will use BigQuery's standard SQL: https://cloud.google.com/bigquery/sql-reference/ Queries and views that reference this view must use the same flag value.

[Experimental] Describes user-defined function resources used in the query.

Trait Implementations

impl Debug for ViewDefinition
[src]

Formats the value using the given formatter.

impl Clone for ViewDefinition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for ViewDefinition
[src]

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

impl Part for ViewDefinition
[src]