Module: Google::Cloud::Bigquery::Storage::V1::AppendRowsRequest::MissingValueInterpretation
- Defined in:
- proto_docs/google/cloud/bigquery/storage/v1/storage.rb
Overview
An enum to indicate how to interpret missing values of fields that are present in user schema but missing in rows. A missing value can represent a NULL or a column default value defined in BigQuery table schema.
Constant Summary collapse
- MISSING_VALUE_INTERPRETATION_UNSPECIFIED =
Invalid missing value interpretation. Requests with this value will be rejected.
0
- NULL_VALUE =
Missing value is interpreted as NULL.
1
- DEFAULT_VALUE =
Missing value is interpreted as column default value if declared in the table schema, NULL otherwise.
2