You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: branches/update-datastore/gcloud-java-bigquery/src/main/java/com/google/gcloud/bigquery/JobStatistics.java
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -339,10 +339,10 @@ public Long totalBytesProcessed() {
339
339
}
340
340
341
341
/**
342
-
* Returns the query plan as a list of stages. Each stage involves a number of steps that read
343
-
* from data sources, perform a series of transformations on the input, and emit an output to a
344
-
* future stage (or the final result). The query plan is available for a completed query job and
345
-
* is retained for 7 days.
342
+
* Returns the query plan as a list of stages or {@code null} if a query plan is not available.
343
+
* Each stage involves a number of steps that read from data sources, perform a series of
344
+
* transformations on the input, and emit an output to a future stage (or the final result). The
345
+
* query plan is available for a completed query job and is retained for 7 days.
Copy file name to clipboardExpand all lines: branches/update-datastore/gcloud-java-bigquery/src/test/java/com/google/gcloud/bigquery/ITBigQueryTest.java
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -771,6 +771,8 @@ public void testQueryJob() throws InterruptedException {
Copy file name to clipboardExpand all lines: branches/update-datastore/gcloud-java-bigquery/src/test/java/com/google/gcloud/bigquery/QueryStageTest.java
0 commit comments