File tree 3 files changed +6
-7
lines changed
google-cloud-bigquery/src/main/java/com/google/cloud/bigquery
3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -60,13 +60,13 @@ implementation 'com.google.cloud:google-cloud-bigquery'
60
60
If you are using Gradle without BOM, add this to your dependencies:
61
61
62
62
``` Groovy
63
- implementation 'com.google.cloud:google-cloud-bigquery:2.38.2 '
63
+ implementation 'com.google.cloud:google-cloud-bigquery:2.39.0 '
64
64
```
65
65
66
66
If you are using SBT, add this to your dependencies:
67
67
68
68
``` Scala
69
- libraryDependencies += " com.google.cloud" % " google-cloud-bigquery" % " 2.38.2 "
69
+ libraryDependencies += " com.google.cloud" % " google-cloud-bigquery" % " 2.39.0 "
70
70
```
71
71
<!-- {x-version-update-end} -->
72
72
@@ -351,7 +351,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
351
351
[ kokoro-badge-link-5 ] : http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigquery/java11.html
352
352
[ stability-image ] : https://img.shields.io/badge/stability-stable-green
353
353
[ maven-version-image ] : https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-bigquery.svg
354
- [ maven-version-link ] : https://central.sonatype.com/artifact/com.google.cloud/google-cloud-bigquery/2.38.2
354
+ [ maven-version-link ] : https://central.sonatype.com/artifact/com.google.cloud/google-cloud-bigquery/2.39.0
355
355
[ authentication ] : https://github.com/googleapis/google-cloud-java#authentication
356
356
[ auth-scopes ] : https://developers.google.com/identity/protocols/oauth2/scopes
357
357
[ predefined-iam-roles ] : https://cloud.google.com/iam/docs/understanding-roles#predefined_roles
Original file line number Diff line number Diff line change @@ -221,7 +221,6 @@ Builder withDefaultValues() {
221
221
*
222
222
* @param useReadAPI or {@code true} for none
223
223
*/
224
- @ Nullable
225
224
public abstract Builder setUseReadAPI (Boolean useReadAPI );
226
225
227
226
/**
Original file line number Diff line number Diff line change @@ -31,34 +31,34 @@ public abstract static class Builder {
31
31
* Sets the total row count to page row count ratio used to determine whether to us the
32
32
* BigQueryStorage Read client to fetch result sets after the first page.
33
33
*/
34
- @ Nullable
35
34
public abstract Builder setTotalToPageRowCountRatio (Long ratio );
36
35
37
36
/**
38
37
* Sets the minimum number of table rows in the query results used to determine whether to us
39
38
* the BigQueryStorage Read client to fetch result sets after the first page.
40
39
*/
41
- @ Nullable
42
40
public abstract Builder setMinResultSize (Long numRows );
43
41
44
42
/**
45
43
* Sets the maximum number of table rows allowed in buffer before streaming them to the
46
44
* BigQueryResult.
47
45
*/
48
- @ Nullable
49
46
public abstract Builder setBufferSize (Long bufferSize );
50
47
51
48
/** Creates a {@code ReadClientConnectionConfiguration} object. */
52
49
public abstract ReadClientConnectionConfiguration build ();
53
50
}
54
51
55
52
/** Returns the totalToPageRowCountRatio in this configuration. */
53
+ @ Nullable
56
54
public abstract Long getTotalToPageRowCountRatio ();
57
55
58
56
/** Returns the minResultSize in this configuration. */
57
+ @ Nullable
59
58
public abstract Long getMinResultSize ();
60
59
61
60
/** Returns the bufferSize in this configuration. */
61
+ @ Nullable
62
62
public abstract Long getBufferSize ();
63
63
64
64
public abstract Builder toBuilder ();
You can’t perform that action at this time.
0 commit comments