Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -234,11 +234,16 @@ public com.google.api.services.bigquery.model.Job call() {
// and get might work.
// We can only do this if we randomly generated the ID. Otherwise we might mistakenly
// fetch a job created by someone else.
Job job;
try {
return getJob(jobInfo.getJobId());
job = getJob(jobInfo.getJobId());
} catch (BigQueryException e) {
throw createException;
}
if (job == null) {
throw createException;
}
return job;
}

@Override
Expand Down