google-cloud-bigquery 1.42.0 → 1.43.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/dataset.rb +3 -3
- data/lib/google/cloud/bigquery/load_job.rb +399 -26
- data/lib/google/cloud/bigquery/query_job.rb +3 -4
- data/lib/google/cloud/bigquery/schema/field.rb +47 -0
- data/lib/google/cloud/bigquery/schema.rb +309 -45
- data/lib/google/cloud/bigquery/service.rb +2 -2
- data/lib/google/cloud/bigquery/table.rb +380 -27
- 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: e27ba48c9cd2221a917650e0499941a061badcd5f5cab2f190dccf6dd16328a0
|
|
4
|
+
data.tar.gz: 51a6d6dde1b54ca6a83ce0826959d129280de0a1cc699a85f95dfb9dc5c18d09
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7f1782907b0e18570146a0bdb5470970ba2c041beeade1509dd6fe3c9ebd03a576db0a14c8e1d34fcdd2456adfbc82e674c86c302f7adaccc63cb278e95108d
|
|
7
|
+
data.tar.gz: b95c3d7ef958259e10fcdb0765d123f5a71043278b6d7e592546940d28b7266dbc3cfa16c5de5bfcfec1ee235d57a7a1bf9060f4eec5b41cc9525e2c7ac42a7a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
+
### 1.43.1 (2023-05-19)
|
|
4
|
+
|
|
5
|
+
#### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* ensure schema for data parsing ([#21616](https://github.com/googleapis/google-cloud-ruby/issues/21616))
|
|
8
|
+
|
|
9
|
+
### 1.43.0 (2023-05-10)
|
|
10
|
+
|
|
11
|
+
#### Features
|
|
12
|
+
|
|
13
|
+
* Added support for default value expression ([#21540](https://github.com/googleapis/google-cloud-ruby/issues/21540))
|
|
14
|
+
|
|
3
15
|
### 1.42.0 (2023-01-15)
|
|
4
16
|
|
|
5
17
|
#### Features
|
|
@@ -720,7 +720,7 @@ module Google
|
|
|
720
720
|
use_legacy_sql: use_legacy_sql,
|
|
721
721
|
user_defined_function_resources: udfs_gapi(udfs)
|
|
722
722
|
)
|
|
723
|
-
}.
|
|
723
|
+
}.compact
|
|
724
724
|
new_view = Google::Apis::BigqueryV2::Table.new(**new_view_opts)
|
|
725
725
|
|
|
726
726
|
gapi = service.insert_table dataset_id, new_view
|
|
@@ -794,7 +794,7 @@ module Google
|
|
|
794
794
|
query: query,
|
|
795
795
|
refresh_interval_ms: refresh_interval_ms
|
|
796
796
|
)
|
|
797
|
-
}.
|
|
797
|
+
}.compact
|
|
798
798
|
new_view = Google::Apis::BigqueryV2::Table.new(**new_view_opts)
|
|
799
799
|
|
|
800
800
|
gapi = service.insert_table dataset_id, new_view
|
|
@@ -2776,7 +2776,7 @@ module Google
|
|
|
2776
2776
|
params = {
|
|
2777
2777
|
dataset: dataset_ref,
|
|
2778
2778
|
target_types: target_types
|
|
2779
|
-
}.
|
|
2779
|
+
}.compact
|
|
2780
2780
|
Google::Apis::BigqueryV2::DatasetAccessEntry.new(**params)
|
|
2781
2781
|
end
|
|
2782
2782
|
|