google-cloud-bigquery 1.21.0 → 1.21.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 +6 -0
- data/TROUBLESHOOTING.md +2 -8
- data/lib/google/cloud/bigquery/dataset.rb +24 -8
- data/lib/google/cloud/bigquery/project.rb +12 -4
- data/lib/google/cloud/bigquery/table.rb +12 -4
- data/lib/google/cloud/bigquery/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 66fb05be59bdce437c28d89670548abba36c23a00df0bbe175983156f7ef4677
|
|
4
|
+
data.tar.gz: 73fdc5465df51fe3e3a2f554fa6540d5ffeb0890146eee2b97e60669abb2a020
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c0857826bc2c7394e9d9fa8ffe4eee947bbd5ed57f9ad636e34718e0b266c7091e4ddd2734619874b7624d1b939e62f7f43a74f6fe944d33b057966dafea188
|
|
7
|
+
data.tar.gz: 685a245183d53e26bfc133f6475b949b00ffc33e25eb00dfa1a52e557525bc9e6e61522d435c2398058c188005f535e5b49f79d28e29b8d8d47cb995c5561bea
|
data/CHANGELOG.md
CHANGED
data/TROUBLESHOOTING.md
CHANGED
|
@@ -24,14 +24,8 @@ improved, *please* create a new issue on GitHub so we can talk about it.
|
|
|
24
24
|
|
|
25
25
|
- [New issue][gh-ruby]
|
|
26
26
|
|
|
27
|
-
Or, you can ask questions on the [Google Cloud Platform Slack][slack-ruby]. You
|
|
28
|
-
can use the "ruby" channel for general Ruby questions, or use the
|
|
29
|
-
"google-cloud-ruby" channel if you have questions about this gem in particular.
|
|
30
|
-
|
|
31
27
|
[so-ruby]: http://stackoverflow.com/questions/tagged/google-cloud-platform+ruby+bigquery
|
|
32
28
|
|
|
33
|
-
[gh-search-ruby]: https://github.com/
|
|
34
|
-
|
|
35
|
-
[gh-ruby]: https://github.com/googlecloudplatform/google-cloud-ruby/issues/new
|
|
29
|
+
[gh-search-ruby]: https://github.com/googleapis/google-cloud-ruby/issues?q=label%3A%22api%3A+bigquery%22
|
|
36
30
|
|
|
37
|
-
[
|
|
31
|
+
[gh-ruby]: https://github.com/googleapis/google-cloud-ruby/issues/new
|
|
@@ -636,12 +636,20 @@ module Google
|
|
|
636
636
|
# SQL](https://cloud.google.com/bigquery/docs/reference/legacy-sql)
|
|
637
637
|
# dialect. Optional. The default value is false.
|
|
638
638
|
# @param [Array<String>, String] udfs User-defined function resources
|
|
639
|
-
# used in
|
|
640
|
-
# Google Cloud Storage URI (`gs://bucket/path`), or an inline resource
|
|
639
|
+
# used in a legacy SQL query. May be either a code resource to load from
|
|
640
|
+
# a Google Cloud Storage URI (`gs://bucket/path`), or an inline resource
|
|
641
641
|
# that contains code for a user-defined function (UDF). Providing an
|
|
642
642
|
# inline code resource is equivalent to providing a URI for a file
|
|
643
|
-
# containing the same code.
|
|
644
|
-
#
|
|
643
|
+
# containing the same code.
|
|
644
|
+
#
|
|
645
|
+
# This parameter is used for defining User Defined Function (UDF)
|
|
646
|
+
# resources only when using legacy SQL. Users of standard SQL should
|
|
647
|
+
# leverage either DDL (e.g. `CREATE [TEMPORARY] FUNCTION ...`) or the
|
|
648
|
+
# Routines API to define UDF resources.
|
|
649
|
+
#
|
|
650
|
+
# For additional information on migrating, see: [Migrating to
|
|
651
|
+
# standard SQL - Differences in user-defined JavaScript
|
|
652
|
+
# functions](https://cloud.google.com/bigquery/docs/reference/standard-sql/migrating-from-legacy-sql#differences_in_user-defined_javascript_functions)
|
|
645
653
|
#
|
|
646
654
|
# @return [Google::Cloud::Bigquery::Table] A new table object.
|
|
647
655
|
#
|
|
@@ -1171,12 +1179,20 @@ module Google
|
|
|
1171
1179
|
# list must have a different key. See [Requirements for
|
|
1172
1180
|
# labels](https://cloud.google.com/bigquery/docs/creating-managing-labels#requirements).
|
|
1173
1181
|
# @param [Array<String>, String] udfs User-defined function resources
|
|
1174
|
-
# used in
|
|
1175
|
-
# Google Cloud Storage URI (`gs://bucket/path`), or an inline resource
|
|
1182
|
+
# used in a legacy SQL query. May be either a code resource to load from
|
|
1183
|
+
# a Google Cloud Storage URI (`gs://bucket/path`), or an inline resource
|
|
1176
1184
|
# that contains code for a user-defined function (UDF). Providing an
|
|
1177
1185
|
# inline code resource is equivalent to providing a URI for a file
|
|
1178
|
-
# containing the same code.
|
|
1179
|
-
#
|
|
1186
|
+
# containing the same code.
|
|
1187
|
+
#
|
|
1188
|
+
# This parameter is used for defining User Defined Function (UDF)
|
|
1189
|
+
# resources only when using legacy SQL. Users of standard SQL should
|
|
1190
|
+
# leverage either DDL (e.g. `CREATE [TEMPORARY] FUNCTION ...`) or the
|
|
1191
|
+
# Routines API to define UDF resources.
|
|
1192
|
+
#
|
|
1193
|
+
# For additional information on migrating, see: [Migrating to
|
|
1194
|
+
# standard SQL - Differences in user-defined JavaScript
|
|
1195
|
+
# functions](https://cloud.google.com/bigquery/docs/reference/standard-sql/migrating-from-legacy-sql#differences_in_user-defined_javascript_functions)
|
|
1180
1196
|
# @param [Integer] maximum_billing_tier Deprecated: Change the billing
|
|
1181
1197
|
# tier to allow high-compute queries.
|
|
1182
1198
|
# @yield [job] a job configuration object
|
|
@@ -419,12 +419,20 @@ module Google
|
|
|
419
419
|
# list must have a different key. See [Requirements for
|
|
420
420
|
# labels](https://cloud.google.com/bigquery/docs/creating-managing-labels#requirements).
|
|
421
421
|
# @param [Array<String>, String] udfs User-defined function resources
|
|
422
|
-
# used in
|
|
423
|
-
# Google Cloud Storage URI (`gs://bucket/path`), or an inline resource
|
|
422
|
+
# used in a legacy SQL query. May be either a code resource to load from
|
|
423
|
+
# a Google Cloud Storage URI (`gs://bucket/path`), or an inline resource
|
|
424
424
|
# that contains code for a user-defined function (UDF). Providing an
|
|
425
425
|
# inline code resource is equivalent to providing a URI for a file
|
|
426
|
-
# containing the same code.
|
|
427
|
-
#
|
|
426
|
+
# containing the same code.
|
|
427
|
+
#
|
|
428
|
+
# This parameter is used for defining User Defined Function (UDF)
|
|
429
|
+
# resources only when using legacy SQL. Users of standard SQL should
|
|
430
|
+
# leverage either DDL (e.g. `CREATE [TEMPORARY] FUNCTION ...`) or the
|
|
431
|
+
# Routines API to define UDF resources.
|
|
432
|
+
#
|
|
433
|
+
# For additional information on migrating, see: [Migrating to
|
|
434
|
+
# standard SQL - Differences in user-defined JavaScript
|
|
435
|
+
# functions](https://cloud.google.com/bigquery/docs/reference/standard-sql/migrating-from-legacy-sql#differences_in_user-defined_javascript_functions)
|
|
428
436
|
# @param [Integer] maximum_billing_tier Deprecated: Change the billing
|
|
429
437
|
# tier to allow high-compute queries.
|
|
430
438
|
# @yield [job] a job configuration object
|
|
@@ -1181,12 +1181,20 @@ module Google
|
|
|
1181
1181
|
# SQL](https://cloud.google.com/bigquery/docs/reference/legacy-sql)
|
|
1182
1182
|
# dialect. Optional. The default value is false.
|
|
1183
1183
|
# @param [Array<String>, String] udfs User-defined function resources
|
|
1184
|
-
# used in
|
|
1185
|
-
# Google Cloud Storage URI (`gs://bucket/path`), or an inline resource
|
|
1184
|
+
# used in a legacy SQL query. May be either a code resource to load from
|
|
1185
|
+
# a Google Cloud Storage URI (`gs://bucket/path`), or an inline resource
|
|
1186
1186
|
# that contains code for a user-defined function (UDF). Providing an
|
|
1187
1187
|
# inline code resource is equivalent to providing a URI for a file
|
|
1188
|
-
# containing the same code.
|
|
1189
|
-
#
|
|
1188
|
+
# containing the same code.
|
|
1189
|
+
#
|
|
1190
|
+
# This parameter is used for defining User Defined Function (UDF)
|
|
1191
|
+
# resources only when using legacy SQL. Users of standard SQL should
|
|
1192
|
+
# leverage either DDL (e.g. `CREATE [TEMPORARY] FUNCTION ...`) or the
|
|
1193
|
+
# Routines API to define UDF resources.
|
|
1194
|
+
#
|
|
1195
|
+
# For additional information on migrating, see: [Migrating to
|
|
1196
|
+
# standard SQL - Differences in user-defined JavaScript
|
|
1197
|
+
# functions](https://cloud.google.com/bigquery/docs/reference/standard-sql/migrating-from-legacy-sql#differences_in_user-defined_javascript_functions)
|
|
1190
1198
|
#
|
|
1191
1199
|
# @example
|
|
1192
1200
|
# require "google/cloud/bigquery"
|
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.21.
|
|
4
|
+
version: 1.21.1
|
|
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: 2020-
|
|
12
|
+
date: 2020-05-28 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: concurrent-ruby
|
|
@@ -115,14 +115,14 @@ dependencies:
|
|
|
115
115
|
requirements:
|
|
116
116
|
- - "~>"
|
|
117
117
|
- !ruby/object:Gem::Version
|
|
118
|
-
version: '5.
|
|
118
|
+
version: '5.14'
|
|
119
119
|
type: :development
|
|
120
120
|
prerelease: false
|
|
121
121
|
version_requirements: !ruby/object:Gem::Requirement
|
|
122
122
|
requirements:
|
|
123
123
|
- - "~>"
|
|
124
124
|
- !ruby/object:Gem::Version
|
|
125
|
-
version: '5.
|
|
125
|
+
version: '5.14'
|
|
126
126
|
- !ruby/object:Gem::Dependency
|
|
127
127
|
name: minitest-autotest
|
|
128
128
|
requirement: !ruby/object:Gem::Requirement
|