public enum BigQueryInsertStatus
Reference documentation and code samples for the Google BigQuery v2 API enum BigQueryInsertStatus.
Specifies the status of an insert attempt depending on the validity of the rows. Note that the validity of a row is determined by whether AllowUnknownFields is set to true or not. If AllowUnknownFields is set to true, then rows containing fields that do not match any on the destination table will, otherwise, be considered valid rows. All matching fields in these rows will be inserted, while unmatching fields will be silently skipped. If AllowUnknownFields is not set to true, then rows containing fields that do not match any on the destination table will be considered invalid and won't be inserted.
Namespace
Google.Cloud.BigQuery.V2Assembly
Google.Cloud.BigQuery.V2.dll
Fields | |
---|---|
Name | Description |
AllRowsInserted | All rows were inserted successfully. This only happens if all rows are valid rows. |
NoRowsInserted | No rows were inserted. In that case the BigQueryInsertResults returned by the insert operation will contain error information about the invalid rows. This can happen when:
|
SomeRowsInserted | Some rows were inserted but not others. In that case the BigQueryInsertResults returned by the insert operation will contain error information about the rows that were not inserted. This happens only when SkipInvalidRows is set to true and some, but not all of the rows, are invalid. |