Skip to content

Commit 73a615d

Browse files
committed
chore: Add comment for cache
1 parent 4a474bd commit 73a615d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3510,6 +3510,8 @@ void testQuery() throws InterruptedException {
35103510
String query = "SELECT TimestampField, StringField, BooleanField FROM " + TABLE_ID.getTable();
35113511
QueryJobConfiguration config =
35123512
QueryJobConfiguration.newBuilder(query)
3513+
// Disable the cache as query plans do not exist from cached results
3514+
// This will force generation of execution plan
35133515
.setUseQueryCache(false)
35143516
.setDefaultDataset(DatasetId.of(DATASET))
35153517
.build();

0 commit comments

Comments
 (0)