google-cloud-bigquery 1.11.1 → 1.11.2
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 +4 -0
- data/lib/google/cloud/bigquery/load_job.rb +3 -2
- data/lib/google/cloud/bigquery/schema.rb +5 -4
- data/lib/google/cloud/bigquery/schema/field.rb +3 -3
- data/lib/google/cloud/bigquery/table.rb +5 -4
- data/lib/google/cloud/bigquery/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fda568083e129056b970a84c51457de70ee1074698efcfcb1c7d2b569e3a2f4e
|
|
4
|
+
data.tar.gz: 00f0df1a1c99a772dccea807556dfb58defce2fe585d11f88dcbd94fcc75007c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a100f2ad6e60402e1b4fdfc93db21e0331a68eeaff458ed633515766630bc9a985ff0a1a6847b9004b252027ffe1e8018a1da6eef16c9b02a200c3d79bb9650c
|
|
7
|
+
data.tar.gz: 68e929461695fdf232ca89b8ed9af7e21647b0c6ea93c1552319b7f3e5cc9583ddf07466edcfe753764d0ed383100aa70da9fc16ff1ad45e8296753cb0bdebbc
|
data/CHANGELOG.md
CHANGED
|
@@ -839,8 +839,9 @@ module Google
|
|
|
839
839
|
##
|
|
840
840
|
# Adds a record field to the schema. A block must be passed describing
|
|
841
841
|
# the nested fields of the record. For more information about nested
|
|
842
|
-
# and repeated records, see [
|
|
843
|
-
#
|
|
842
|
+
# and repeated records, see [Loading denormalized, nested, and
|
|
843
|
+
# repeated data
|
|
844
|
+
# ](https://cloud.google.com/bigquery/docs/loading-data#loading_denormalized_nested_and_repeated_data).
|
|
844
845
|
#
|
|
845
846
|
# See {Schema#record}.
|
|
846
847
|
#
|
|
@@ -26,8 +26,8 @@ module Google
|
|
|
26
26
|
# {Dataset#create_table} and {Table#schema}. Supports nested and
|
|
27
27
|
# repeated fields via a nested block.
|
|
28
28
|
#
|
|
29
|
-
# @see https://cloud.google.com/bigquery/
|
|
30
|
-
#
|
|
29
|
+
# @see https://cloud.google.com/bigquery/docs/loading-data#loading_denormalized_nested_and_repeated_data
|
|
30
|
+
# Loading denormalized, nested, and repeated data
|
|
31
31
|
#
|
|
32
32
|
# @example
|
|
33
33
|
# require "google/cloud/bigquery"
|
|
@@ -426,8 +426,9 @@ module Google
|
|
|
426
426
|
##
|
|
427
427
|
# Adds a record field to the schema. A block must be passed describing
|
|
428
428
|
# the nested fields of the record. For more information about nested
|
|
429
|
-
# and repeated records, see [
|
|
430
|
-
#
|
|
429
|
+
# and repeated records, see [Loading denormalized, nested, and repeated
|
|
430
|
+
# data
|
|
431
|
+
# ](https://cloud.google.com/bigquery/docs/loading-data#loading_denormalized_nested_and_repeated_data).
|
|
431
432
|
#
|
|
432
433
|
# @param [String] name The field name. The name must contain only
|
|
433
434
|
# letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
|
|
@@ -22,8 +22,8 @@ module Google
|
|
|
22
22
|
#
|
|
23
23
|
# The fields of a table schema.
|
|
24
24
|
#
|
|
25
|
-
# @see https://cloud.google.com/bigquery/
|
|
26
|
-
#
|
|
25
|
+
# @see https://cloud.google.com/bigquery/docs/loading-data#loading_denormalized_nested_and_repeated_data
|
|
26
|
+
# Loading denormalized, nested, and repeated data
|
|
27
27
|
#
|
|
28
28
|
# @example
|
|
29
29
|
# require "google/cloud/bigquery"
|
|
@@ -508,7 +508,7 @@ module Google
|
|
|
508
508
|
# Adds a record field to the nested schema of a record field. A block
|
|
509
509
|
# must be passed describing the nested fields of the record. For more
|
|
510
510
|
# information about nested and repeated records, see [Preparing Data
|
|
511
|
-
# for BigQuery](https://cloud.google.com/bigquery/
|
|
511
|
+
# for BigQuery](https://cloud.google.com/bigquery/docs/loading-data#loading_denormalized_nested_and_repeated_data).
|
|
512
512
|
#
|
|
513
513
|
# This can only be called on fields that are of type `RECORD`.
|
|
514
514
|
#
|
|
@@ -44,8 +44,8 @@ module Google
|
|
|
44
44
|
# indirectly by the top-level query. (See {#view?}, {#query}, {#query=},
|
|
45
45
|
# and {Dataset#create_view}.)
|
|
46
46
|
#
|
|
47
|
-
# @see https://cloud.google.com/bigquery/
|
|
48
|
-
#
|
|
47
|
+
# @see https://cloud.google.com/bigquery/docs/loading-data#loading_denormalized_nested_and_repeated_data
|
|
48
|
+
# Loading denormalized, nested, and repeated data
|
|
49
49
|
#
|
|
50
50
|
# @example
|
|
51
51
|
# require "google/cloud/bigquery"
|
|
@@ -2899,8 +2899,9 @@ module Google
|
|
|
2899
2899
|
##
|
|
2900
2900
|
# Adds a record field to the schema. A block must be passed describing
|
|
2901
2901
|
# the nested fields of the record. For more information about nested
|
|
2902
|
-
# and repeated records, see [
|
|
2903
|
-
#
|
|
2902
|
+
# and repeated records, see [Loading denormalized, nested, and
|
|
2903
|
+
# repeated data
|
|
2904
|
+
# ](https://cloud.google.com/bigquery/docs/loading-data#loading_denormalized_nested_and_repeated_data).
|
|
2904
2905
|
#
|
|
2905
2906
|
# See {Schema#record}.
|
|
2906
2907
|
#
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-bigquery
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.11.
|
|
4
|
+
version: 1.11.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Moore
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2019-
|
|
12
|
+
date: 2019-06-12 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: google-cloud-core
|