google-cloud-bigquery 1.33.0 → 1.34.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/google/cloud/bigquery/data.rb +33 -0
- data/lib/google/cloud/bigquery/query_job.rb +33 -0
- 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: e1868b74a16bb2b5b53c861f461c684bb5926e71c9c273a4d8f3bad9a02502a2
|
4
|
+
data.tar.gz: 582047d7174dc4063b0f9aaee2057136b4aff4eda687c05c2e9a931ba9dfc5b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4aaf252e3277bb47e9b1c27a083da4d74a3f37064506b7d288cc1f9dc720906d0403712917d1d8ada4fb5cef08e43a5f7db297848f428a007f197513fd4c72e
|
7
|
+
data.tar.gz: 42c4c862b05fbf0563bdb0721685dab1651243ceb5a803cbf6000b42203be58a5ac4504d4b7d0da9864825c041c379cd344c0efdd309bfb4aa5c7914de92fafd
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
+
### 1.34.0 / 2021-07-20
|
4
|
+
|
5
|
+
#### Features
|
6
|
+
|
7
|
+
* Add DmlStatistics
|
8
|
+
* Add QueryJob#deleted_row_count
|
9
|
+
* Add QueryJob#inserted_row_count
|
10
|
+
* Add QueryJob#updated_row_count
|
11
|
+
* Add Data#deleted_row_count
|
12
|
+
* Add Data#inserted_row_count
|
13
|
+
* Add Data#updated_row_count
|
14
|
+
|
3
15
|
### 1.33.0 / 2021-07-14
|
4
16
|
|
5
17
|
#### Features
|
@@ -363,6 +363,39 @@ module Google
|
|
363
363
|
job_gapi&.statistics&.query&.num_dml_affected_rows
|
364
364
|
end
|
365
365
|
|
366
|
+
##
|
367
|
+
# The number of deleted rows. Present only for DML statements `DELETE`,
|
368
|
+
# `MERGE` and `TRUNCATE`. (See {#statement_type}.)
|
369
|
+
#
|
370
|
+
# @return [Integer, nil] The number of deleted rows, or `nil` if not
|
371
|
+
# applicable.
|
372
|
+
#
|
373
|
+
def deleted_row_count
|
374
|
+
job_gapi&.statistics&.query&.dml_stats&.deleted_row_count
|
375
|
+
end
|
376
|
+
|
377
|
+
##
|
378
|
+
# The number of inserted rows. Present only for DML statements `INSERT`
|
379
|
+
# and `MERGE`. (See {#statement_type}.)
|
380
|
+
#
|
381
|
+
# @return [Integer, nil] The number of inserted rows, or `nil` if not
|
382
|
+
# applicable.
|
383
|
+
#
|
384
|
+
def inserted_row_count
|
385
|
+
job_gapi&.statistics&.query&.dml_stats&.inserted_row_count
|
386
|
+
end
|
387
|
+
|
388
|
+
##
|
389
|
+
# The number of updated rows. Present only for DML statements `UPDATE`
|
390
|
+
# and `MERGE`. (See {#statement_type}.)
|
391
|
+
#
|
392
|
+
# @return [Integer, nil] The number of updated rows, or `nil` if not
|
393
|
+
# applicable.
|
394
|
+
#
|
395
|
+
def updated_row_count
|
396
|
+
job_gapi&.statistics&.query&.dml_stats&.updated_row_count
|
397
|
+
end
|
398
|
+
|
366
399
|
##
|
367
400
|
# Whether there is a next page of data.
|
368
401
|
#
|
@@ -386,6 +386,39 @@ module Google
|
|
386
386
|
@gapi.statistics.query.num_dml_affected_rows
|
387
387
|
end
|
388
388
|
|
389
|
+
##
|
390
|
+
# The number of deleted rows. Present only for DML statements `DELETE`,
|
391
|
+
# `MERGE` and `TRUNCATE`. (See {#statement_type}.)
|
392
|
+
#
|
393
|
+
# @return [Integer, nil] The number of deleted rows, or `nil` if not
|
394
|
+
# applicable.
|
395
|
+
#
|
396
|
+
def deleted_row_count
|
397
|
+
@gapi.statistics.query&.dml_stats&.deleted_row_count
|
398
|
+
end
|
399
|
+
|
400
|
+
##
|
401
|
+
# The number of inserted rows. Present only for DML statements `INSERT`
|
402
|
+
# and `MERGE`. (See {#statement_type}.)
|
403
|
+
#
|
404
|
+
# @return [Integer, nil] The number of inserted rows, or `nil` if not
|
405
|
+
# applicable.
|
406
|
+
#
|
407
|
+
def inserted_row_count
|
408
|
+
@gapi.statistics.query&.dml_stats&.inserted_row_count
|
409
|
+
end
|
410
|
+
|
411
|
+
##
|
412
|
+
# The number of updated rows. Present only for DML statements `UPDATE`
|
413
|
+
# and `MERGE`. (See {#statement_type}.)
|
414
|
+
#
|
415
|
+
# @return [Integer, nil] The number of updated rows, or `nil` if not
|
416
|
+
# applicable.
|
417
|
+
#
|
418
|
+
def updated_row_count
|
419
|
+
@gapi.statistics.query&.dml_stats&.updated_row_count
|
420
|
+
end
|
421
|
+
|
389
422
|
##
|
390
423
|
# The table in which the query results are stored.
|
391
424
|
#
|
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.34.0
|
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: 2021-07-
|
12
|
+
date: 2021-07-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: concurrent-ruby
|