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: clients/google-api-services-bigquery/v2/2.0.0/com/google/api/services/bigquery/model/JobConfigurationQuery.java
+33Lines changed: 33 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -288,6 +288,16 @@ public final class JobConfigurationQuery extends com.google.api.client.json.Gene
288
288
@com.google.api.client.util.Key
289
289
privatejava.lang.StringwriteDisposition;
290
290
291
+
/**
292
+
* Optional. This is only supported for a SELECT query using a temporary table. If set, the query
293
+
* is allowed to write results incrementally to the temporary result table. This may incur a
294
+
* performance penalty. This option cannot be used with Legacy SQL. This feature is not yet
295
+
* available.
296
+
* The value may be {@code null}.
297
+
*/
298
+
@com.google.api.client.util.Key
299
+
privatejava.lang.BooleanwriteIncrementalResults;
300
+
291
301
/**
292
302
* Optional. If true and query uses legacy SQL dialect, allows the query to produce arbitrarily
293
303
* large result tables at a slight cost in performance. Requires destinationTable to be set. For
@@ -981,6 +991,29 @@ public JobConfigurationQuery setWriteDisposition(java.lang.String writeDispositi
981
991
returnthis;
982
992
}
983
993
994
+
/**
995
+
* Optional. This is only supported for a SELECT query using a temporary table. If set, the query
996
+
* is allowed to write results incrementally to the temporary result table. This may incur a
997
+
* performance penalty. This option cannot be used with Legacy SQL. This feature is not yet
0 commit comments