Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,20 +52,20 @@ If you are using Maven without BOM, add this to your dependencies:
If you are using Gradle 5.x or later, add this to your dependencies

```Groovy
implementation platform('com.google.cloud:libraries-bom:25.2.0')
implementation platform('com.google.cloud:libraries-bom:25.3.0')

implementation 'com.google.cloud:google-cloud-bigquery'
```
If you are using Gradle without BOM, add this to your dependencies

```Groovy
implementation 'com.google.cloud:google-cloud-bigquery:2.11.0'
implementation 'com.google.cloud:google-cloud-bigquery:2.11.1'
```

If you are using SBT, add this to your dependencies

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-bigquery" % "2.11.0"
libraryDependencies += "com.google.cloud" % "google-cloud-bigquery" % "2.11.1"
```

## Authentication
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,10 @@ public BigQueryResult executeSelect(
BigQueryResult getResultSet(
GetQueryResultsResponse firstPage, JobId jobId, String sql, Boolean hasQueryParameters) {
if (firstPage.getJobComplete()
&& firstPage.getTotalRows()
!= null) { // firstPage.getTotalRows() is null if job is not complete
&& firstPage.getTotalRows() != null
&& firstPage.getSchema()
!= null) { // firstPage.getTotalRows() is null if job is not complete. We need to make
// sure that the schema is not null, as it is required for the ResultSet
return getSubsequentQueryResultsWithJob(
firstPage.getTotalRows().longValue(),
(long) firstPage.getRows().size(),
Expand Down