Skip to content

Commit 8fd6f8b

Browse files
1 parent 817a052 commit 8fd6f8b

4 files changed

Lines changed: 47 additions & 36 deletions

File tree

src/Bigquery/IncrementalResultStats.php

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,34 +24,42 @@ class IncrementalResultStats extends \Google\Model
2424
*/
2525
public const DISABLED_REASON_DISABLED_REASON_UNSPECIFIED = 'DISABLED_REASON_UNSPECIFIED';
2626
/**
27-
* Some other reason.
27+
* Incremental results are/were disabled for reasons not covered by the other
28+
* enum values, e.g. runtime issues.
2829
*/
2930
public const DISABLED_REASON_OTHER = 'OTHER';
3031
/**
31-
* Reason why incremental query results are/were not written by the query.
32+
* Query includes an operation that is not supported.
33+
*/
34+
public const DISABLED_REASON_UNSUPPORTED_OPERATOR = 'UNSUPPORTED_OPERATOR';
35+
/**
36+
* Output only. Reason why incremental query results are/were not written by
37+
* the query.
3238
*
3339
* @var string
3440
*/
3541
public $disabledReason;
3642
/**
37-
* The time at which the result table's contents were modified. May be absent
38-
* if no results have been written or the query has completed.
43+
* Output only. The time at which the result table's contents were modified.
44+
* May be absent if no results have been written or the query has completed.
3945
*
4046
* @var string
4147
*/
4248
public $resultSetLastModifyTime;
4349
/**
44-
* The time at which the result table's contents were completely replaced. May
45-
* be absent if no results have been written or the query has completed.
50+
* Output only. The time at which the result table's contents were completely
51+
* replaced. May be absent if no results have been written or the query has
52+
* completed.
4653
*
4754
* @var string
4855
*/
4956
public $resultSetLastReplaceTime;
5057

5158
/**
52-
* Reason why incremental query results are/were not written by the query.
59+
* Output only. Reason why incremental query results are/were not written by
60+
* the query.
5361
*
54-
* Accepted values: DISABLED_REASON_UNSPECIFIED, OTHER
62+
* Accepted values: DISABLED_REASON_UNSPECIFIED, OTHER, UNSUPPORTED_OPERATOR
5563
*
5664
* @param self::DISABLED_REASON_* $disabledReason
5765
*/
@@ -67,8 +75,8 @@ public function getDisabledReason()
6775
return $this->disabledReason;
6876
}
6977
/**
70-
* The time at which the result table's contents were modified. May be absent
71-
* if no results have been written or the query has completed.
78+
* Output only. The time at which the result table's contents were modified.
79+
* May be absent if no results have been written or the query has completed.
7280
*
7381
* @param string $resultSetLastModifyTime
7482
*/
@@ -84,8 +92,9 @@ public function getResultSetLastModifyTime()
8492
return $this->resultSetLastModifyTime;
8593
}
8694
/**
87-
* The time at which the result table's contents were completely replaced. May
88-
* be absent if no results have been written or the query has completed.
95+
* Output only. The time at which the result table's contents were completely
96+
* replaced. May be absent if no results have been written or the query has
97+
* completed.
8998
*
9099
* @param string $resultSetLastReplaceTime
91100
*/

src/Bigquery/JobConfigurationQuery.php

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -158,10 +158,11 @@ class JobConfigurationQuery extends \Google\Collection
158158
protected $timePartitioningDataType = '';
159159
/**
160160
* Optional. Specifies whether to use BigQuery's legacy SQL dialect for this
161-
* query. The default value is true. If set to false, the query will use
162-
* BigQuery's GoogleSQL: https://cloud.google.com/bigquery/sql-reference/ When
163-
* useLegacySql is set to false, the value of flattenResults is ignored; query
164-
* will be run as if flattenResults is false.
161+
* query. The default value is true. If set to false, the query uses
162+
* BigQuery's
163+
* [GoogleSQL](https://docs.cloud.google.com/bigquery/docs/introduction-sql).
164+
* When useLegacySql is set to false, the value of flattenResults is ignored;
165+
* query will be run as if flattenResults is false.
165166
*
166167
* @var bool
167168
*/
@@ -631,10 +632,11 @@ public function getTimePartitioning()
631632
}
632633
/**
633634
* Optional. Specifies whether to use BigQuery's legacy SQL dialect for this
634-
* query. The default value is true. If set to false, the query will use
635-
* BigQuery's GoogleSQL: https://cloud.google.com/bigquery/sql-reference/ When
636-
* useLegacySql is set to false, the value of flattenResults is ignored; query
637-
* will be run as if flattenResults is false.
635+
* query. The default value is true. If set to false, the query uses
636+
* BigQuery's
637+
* [GoogleSQL](https://docs.cloud.google.com/bigquery/docs/introduction-sql).
638+
* When useLegacySql is set to false, the value of flattenResults is ignored;
639+
* query will be run as if flattenResults is false.
638640
*
639641
* @param bool $useLegacySql
640642
*/

src/Bigquery/QueryRequest.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -216,10 +216,10 @@ class QueryRequest extends \Google\Collection
216216
public $timeoutMs;
217217
/**
218218
* Specifies whether to use BigQuery's legacy SQL dialect for this query. The
219-
* default value is true. If set to false, the query will use BigQuery's
220-
* GoogleSQL: https://cloud.google.com/bigquery/sql-reference/ When
221-
* useLegacySql is set to false, the value of flattenResults is ignored; query
222-
* will be run as if flattenResults is false.
219+
* default value is true. If set to false, the query uses BigQuery's
220+
* [GoogleSQL](https://docs.cloud.google.com/bigquery/docs/introduction-sql).
221+
* When useLegacySql is set to false, the value of flattenResults is ignored;
222+
* query will be run as if flattenResults is false.
223223
*
224224
* @var bool
225225
*/
@@ -668,10 +668,10 @@ public function getTimeoutMs()
668668
}
669669
/**
670670
* Specifies whether to use BigQuery's legacy SQL dialect for this query. The
671-
* default value is true. If set to false, the query will use BigQuery's
672-
* GoogleSQL: https://cloud.google.com/bigquery/sql-reference/ When
673-
* useLegacySql is set to false, the value of flattenResults is ignored; query
674-
* will be run as if flattenResults is false.
671+
* default value is true. If set to false, the query uses BigQuery's
672+
* [GoogleSQL](https://docs.cloud.google.com/bigquery/docs/introduction-sql).
673+
* When useLegacySql is set to false, the value of flattenResults is ignored;
674+
* query will be run as if flattenResults is false.
675675
*
676676
* @param bool $useLegacySql
677677
*/

src/Bigquery/ViewDefinition.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ class ViewDefinition extends \Google\Collection
3939
public $useExplicitColumnNames;
4040
/**
4141
* Specifies whether to use BigQuery's legacy SQL for this view. The default
42-
* value is true. If set to false, the view will use BigQuery's GoogleSQL:
43-
* https://cloud.google.com/bigquery/sql-reference/ Queries and views that
44-
* reference this view must use the same flag value. A wrapper is used here
45-
* because the default value is True.
42+
* value is true. If set to false, the view uses BigQuery's
43+
* [GoogleSQL](https://docs.cloud.google.com/bigquery/docs/introduction-sql).
44+
* Queries and views that reference this view must use the same flag value. A
45+
* wrapper is used here because the default value is True.
4646
*
4747
* @var bool
4848
*/
@@ -117,10 +117,10 @@ public function getUseExplicitColumnNames()
117117
}
118118
/**
119119
* Specifies whether to use BigQuery's legacy SQL for this view. The default
120-
* value is true. If set to false, the view will use BigQuery's GoogleSQL:
121-
* https://cloud.google.com/bigquery/sql-reference/ Queries and views that
122-
* reference this view must use the same flag value. A wrapper is used here
123-
* because the default value is True.
120+
* value is true. If set to false, the view uses BigQuery's
121+
* [GoogleSQL](https://docs.cloud.google.com/bigquery/docs/introduction-sql).
122+
* Queries and views that reference this view must use the same flag value. A
123+
* wrapper is used here because the default value is True.
124124
*
125125
* @param bool $useLegacySql
126126
*/

0 commit comments

Comments
 (0)