Skip to content
Open
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 @@ -1184,6 +1184,9 @@ static void beforeClass() throws InterruptedException, IOException {
Job jobLargeTable = bigquery.create(JobInfo.of(configurationLargeTable));
jobLargeTable = jobLargeTable.waitFor();
assertNull(jobLargeTable.getStatus().getError());

// Warmup query to initialize connection and avoid cold start timeout in subsequent tests
bigquery.query(QueryJobConfiguration.of("SELECT 1"));
}

@AfterAll
Expand Down
Loading