google-cloud-bigquery 1.62.0 → 1.63.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 +12 -0
- data/lib/google/cloud/bigquery/query_job.rb +5 -0
- data/lib/google/cloud/bigquery/service.rb +2 -2
- 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: 7d83a3a82750170b564fbe961fa6f7289dedfe945cf51f7b7a3146ae85852ed3
|
|
4
|
+
data.tar.gz: fe2a32aefdf50775acf114990f8c646b89f0fafba413f4f3a3a196b8a7d011b2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f936b20186d910ae89b0625f254f6d595a2b87af5b64561771333dc7a3faddfeafcf480e9c06dd042097840c652c455c8b73d1f0c1f988f5ae8fb7f4de60a991
|
|
7
|
+
data.tar.gz: b2373720653885600ec4c215752e6f285c4141808b82ba5e5bb52f7f52be285d0096991f41b78b69173e2524dd8a3e325ac422c5a45ab0fdb42223d78e4dadcf
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
+
### 1.63.1 (2026-05-05)
|
|
4
|
+
|
|
5
|
+
#### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* use destination table's project_id for queries ([#33886](https://github.com/googleapis/google-cloud-ruby/issues/33886)) ([df84fa9](https://github.com/googleapis/google-cloud-ruby/commit/df84fa9883aa9e159bcafbf8033780f33bf19fc5)), closes [#33810](https://github.com/googleapis/google-cloud-ruby/issues/33810)
|
|
8
|
+
|
|
9
|
+
### 1.63.0 (2026-04-15)
|
|
10
|
+
|
|
11
|
+
#### Features
|
|
12
|
+
|
|
13
|
+
* Update minimum Ruby to v3.2 and support v4.0 ([#33811](https://github.com/googleapis/google-cloud-ruby/issues/33811))
|
|
14
|
+
|
|
3
15
|
### 1.62.0 (2026-01-06)
|
|
4
16
|
|
|
5
17
|
#### Features
|
|
@@ -757,6 +757,7 @@ module Google
|
|
|
757
757
|
|
|
758
758
|
data_hash = service.list_tabledata destination_table_dataset_id,
|
|
759
759
|
destination_table_table_id,
|
|
760
|
+
project_id: destination_table_project_id,
|
|
760
761
|
token: token,
|
|
761
762
|
max: max,
|
|
762
763
|
start: start,
|
|
@@ -1828,6 +1829,10 @@ module Google
|
|
|
1828
1829
|
@gapi.configuration.query.destination_table.table_id
|
|
1829
1830
|
end
|
|
1830
1831
|
|
|
1832
|
+
def destination_table_project_id
|
|
1833
|
+
@gapi.configuration.query.destination_table.project_id
|
|
1834
|
+
end
|
|
1835
|
+
|
|
1831
1836
|
def destination_table_gapi
|
|
1832
1837
|
Google::Apis::BigqueryV2::Table.new(
|
|
1833
1838
|
table_reference: @gapi.configuration.query.destination_table,
|
|
@@ -248,11 +248,11 @@ access_policy_version: access_policy_version, update_mode: update_mode
|
|
|
248
248
|
##
|
|
249
249
|
# Retrieves data from the table.
|
|
250
250
|
def list_tabledata dataset_id, table_id, max: nil, token: nil, start: nil,
|
|
251
|
-
format_options_use_int64_timestamp: nil
|
|
251
|
+
format_options_use_int64_timestamp: nil, project_id: nil
|
|
252
252
|
# The list operation is considered idempotent
|
|
253
253
|
execute backoff: true do
|
|
254
254
|
json_txt = service.list_table_data \
|
|
255
|
-
@project, dataset_id, table_id,
|
|
255
|
+
project_id || @project, dataset_id, table_id,
|
|
256
256
|
max_results: max,
|
|
257
257
|
page_token: token,
|
|
258
258
|
start_index: start,
|
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.
|
|
4
|
+
version: 1.63.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Moore
|
|
@@ -188,7 +188,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
188
188
|
requirements:
|
|
189
189
|
- - ">="
|
|
190
190
|
- !ruby/object:Gem::Version
|
|
191
|
-
version: '3.
|
|
191
|
+
version: '3.2'
|
|
192
192
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
193
193
|
requirements:
|
|
194
194
|
- - ">="
|