| Index: generated/googleapis/lib/bigquery/v2.dart
|
| diff --git a/generated/googleapis/lib/bigquery/v2.dart b/generated/googleapis/lib/bigquery/v2.dart
|
| index 2795b3bb01e18bde0e34e3af3aba895cdce35b43..b5de958b58eedfc7c0796fe975db4a1511d0ae4a 100644
|
| --- a/generated/googleapis/lib/bigquery/v2.dart
|
| +++ b/generated/googleapis/lib/bigquery/v2.dart
|
| @@ -2823,8 +2823,8 @@ class JobConfigurationLoad {
|
| * [Optional] Specifies a string that represents a null value in a CSV file.
|
| * For example, if you specify "\N", BigQuery interprets "\N" as a null value
|
| * when loading a CSV file. The default value is the empty string. If you set
|
| - * this property to a custom value, BigQuery still interprets the empty string
|
| - * as a null value for all data types except for STRING and BYTE. For STRING
|
| + * this property to a custom value, BigQuery throws an error if an empty
|
| + * string is present for all data types except for STRING and BYTE. For STRING
|
| * and BYTE columns, BigQuery interprets the empty string as an empty value.
|
| */
|
| core.String nullMarker;
|
| @@ -3038,8 +3038,10 @@ class JobConfigurationLoad {
|
|
|
| class JobConfigurationQuery {
|
| /**
|
| - * If true, allows the query to produce arbitrarily large result tables at a
|
| - * slight cost in performance. Requires destinationTable to be set.
|
| + * [Optional] If true and query uses legacy SQL dialect, allows the query to
|
| + * produce arbitrarily large result tables at a slight cost in performance.
|
| + * Requires destinationTable to be set. For standard SQL queries, this flag is
|
| + * ignored and large results are always allowed.
|
| */
|
| core.bool allowLargeResults;
|
| /**
|
| @@ -3062,9 +3064,10 @@ class JobConfigurationQuery {
|
| */
|
| TableReference destinationTable;
|
| /**
|
| - * [Optional] Flattens all nested and repeated fields in the query results.
|
| - * The default value is true. allowLargeResults must be true if this is set to
|
| - * false.
|
| + * [Optional] If true and query uses legacy SQL dialect, flattens all nested
|
| + * and repeated fields in the query results. allowLargeResults must be true if
|
| + * this is set to false. For standard SQL queries, this flag is ignored and
|
| + * results are never flattened.
|
| */
|
| core.bool flattenResults;
|
| /**
|
|
|