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
@@ -297,20 +293,6 @@ public Builder dryRun(Boolean dryRun) {
297
293
returnthis;
298
294
}
299
295
300
-
/**
301
-
* Sets whether to use BigQuery's legacy SQL dialect for this query. If set to {@code false},
302
-
* the query will use BigQuery's <a href="https://cloud.google.com/bigquery/sql-reference/">
303
-
* Standard SQL</a>. When set to {@code false}, the values of
304
-
* {@link #allowLargeResults(Boolean)} and {@link #flattenResults(Boolean)} are ignored; query
305
-
* will be run as if {@link #allowLargeResults(Boolean)} is {@code true} and
306
-
* {@link #flattenResults(Boolean)} is {@code false}. If not set, legacy SQL dialect is used.
307
-
* This property is experimental and might be subject to change.
* Returns whether to use BigQuery's legacy SQL dialect for this query. If set to {@code false},
450
-
* the query will use BigQuery's <a href="https://cloud.google.com/bigquery/sql-reference/">
451
-
* Standard SQL</a>. When set to {@code false}, the values of {@link #allowLargeResults()} and
452
-
* {@link #flattenResults()} are ignored; query will be run as if {@link #allowLargeResults()} is
453
-
* {@code true} and {@link #flattenResults()} is {@code false}. If not set, legacy SQL dialect is
454
-
* used. This property is experimental and might be subject to change.
Copy file name to clipboardExpand all lines: trunk/gcloud-java-bigquery/src/main/java/com/google/cloud/bigquery/QueryRequest.java
+2-35Lines changed: 2 additions & 35 deletions
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,6 @@ public final class QueryRequest implements Serializable {
70
70
privatefinalLongmaxWaitTime;
71
71
privatefinalBooleandryRun;
72
72
privatefinalBooleanuseQueryCache;
73
-
privatefinalBooleanuseLegacySql;
74
73
75
74
publicstaticfinalclassBuilder {
76
75
@@ -80,7 +79,6 @@ public static final class Builder {
80
79
privateLongmaxWaitTime;
81
80
privateBooleandryRun;
82
81
privateBooleanuseQueryCache;
83
-
privateBooleanuseLegacySql;
84
82
85
83
privateBuilder() {}
86
84
@@ -152,17 +150,6 @@ public Builder useQueryCache(Boolean useQueryCache) {
152
150
returnthis;
153
151
}
154
152
155
-
/**
156
-
* Sets whether to use BigQuery's legacy SQL dialect for this query. If set to {@code false},
157
-
* the query will use BigQuery's <a href="https://cloud.google.com/bigquery/sql-reference/">
158
-
* Standard SQL</a>. If not set, legacy SQL dialect is used. This property is experimental and
@@ -232,16 +218,6 @@ public Boolean useQueryCache() {
232
218
returnuseQueryCache;
233
219
}
234
220
235
-
/**
236
-
* Returns whether to use BigQuery's legacy SQL dialect for this query. If set to {@code false},
237
-
* the query will use BigQuery's <a href="https://cloud.google.com/bigquery/sql-reference/">
238
-
* Standard SQL</a>. If not set, legacy SQL dialect is used. This property is experimental and
239
-
* might be subject to change.
240
-
*/
241
-
publicBooleanuseLegacySql() {
242
-
returnuseLegacySql;
243
-
}
244
-
245
221
/**
246
222
* Returns a builder for the {@code QueryRequest} object.
0 commit comments