google-cloud-bigquery 1.61.0 → 1.61.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/OVERVIEW.md +4 -4
- data/lib/google/cloud/bigquery/job.rb +6 -4
- data/lib/google/cloud/bigquery/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3b011fdd6daa487b99c4c1bf684f3952f9cd380743048c5a314241750a01fbf3
|
|
4
|
+
data.tar.gz: d7668277ad007c19d12b06c8cf6fd02695345dea12a1e6f9d3ac573bc5c70e45
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a85f76563d165c7fecb23040c2f46a55edb0a89bb0564520fe1d95ac2a5e34862f5375adbefabd1764cab3fb888dfe40574b7b92d7292a297db5647d7e9fb121
|
|
7
|
+
data.tar.gz: ac10adf9544cf44fa4f7dee744340db9976fc86e09c458eb209692561fc9fb05abd350ceb358bfae3bb3bb06b2f7bc5a1804a7ef8811eca16c7d9f92c3e6002d
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
|
@@ -14,7 +14,7 @@ connecting in the {file:AUTHENTICATION.md Authentication Guide}.
|
|
|
14
14
|
|
|
15
15
|
To help you get started quickly, the first few examples below use a public
|
|
16
16
|
dataset provided by Google. As soon as you have [signed
|
|
17
|
-
up](https://cloud.google.com/bigquery
|
|
17
|
+
up](https://cloud.google.com/bigquery) to use BigQuery, and provided
|
|
18
18
|
that you stay in the free tier for queries, you should be able to run these
|
|
19
19
|
first examples without the need to set up billing or to load data (although
|
|
20
20
|
we'll show you how to do that too.)
|
|
@@ -249,8 +249,8 @@ dataset = bigquery.create_dataset "my_dataset"
|
|
|
249
249
|
Now that you have a dataset, you can use it to create a table. Every table is
|
|
250
250
|
defined by a schema that may contain nested and repeated fields. The example
|
|
251
251
|
below shows a schema with a repeated record field named `cities_lived`. (For
|
|
252
|
-
more information about nested and repeated fields, see
|
|
253
|
-
|
|
252
|
+
more information about nested and repeated fields, see
|
|
253
|
+
[Using Nested and Repeated Fields](https://docs.cloud.google.com/bigquery/docs/best-practices-performance-nested).)
|
|
254
254
|
|
|
255
255
|
```ruby
|
|
256
256
|
require "google/cloud/bigquery"
|
|
@@ -455,7 +455,7 @@ bigquery = Google::Cloud::Bigquery.new retries: 10, timeout: 120
|
|
|
455
455
|
```
|
|
456
456
|
|
|
457
457
|
See the [BigQuery error
|
|
458
|
-
table](https://cloud.google.com/bigquery/
|
|
458
|
+
table](https://docs.cloud.google.com/bigquery/docs/error-messages) for
|
|
459
459
|
a list of error conditions.
|
|
460
460
|
|
|
461
461
|
## Additional information
|
|
@@ -327,8 +327,8 @@ module Google
|
|
|
327
327
|
end
|
|
328
328
|
|
|
329
329
|
##
|
|
330
|
-
#
|
|
331
|
-
#
|
|
330
|
+
# Output only. Final error result of the job. If present, indicates that
|
|
331
|
+
# the job has completed and was unsuccessful.
|
|
332
332
|
#
|
|
333
333
|
# @see https://cloud.google.com/bigquery/docs/reference/v2/jobs Jobs API
|
|
334
334
|
# reference
|
|
@@ -346,8 +346,10 @@ module Google
|
|
|
346
346
|
end
|
|
347
347
|
|
|
348
348
|
##
|
|
349
|
-
#
|
|
350
|
-
# of
|
|
349
|
+
# Output only. The first errors encountered during the running of the
|
|
350
|
+
# job. The final message includes the number of errors that caused the
|
|
351
|
+
# process to stop. Errors here do not necessarily mean that the job has
|
|
352
|
+
# not completed or was unsuccessful.
|
|
351
353
|
#
|
|
352
354
|
# @return [Array<Hash>, nil] Returns an array of hashes containing
|
|
353
355
|
# `reason` and `message` keys:
|