We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a474bd commit 73a615dCopy full SHA for 73a615d
google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java
@@ -3510,6 +3510,8 @@ void testQuery() throws InterruptedException {
3510
String query = "SELECT TimestampField, StringField, BooleanField FROM " + TABLE_ID.getTable();
3511
QueryJobConfiguration config =
3512
QueryJobConfiguration.newBuilder(query)
3513
+ // Disable the cache as query plans do not exist from cached results
3514
+ // This will force generation of execution plan
3515
.setUseQueryCache(false)
3516
.setDefaultDataset(DatasetId.of(DATASET))
3517
.build();
0 commit comments