@@ -23,7 +23,6 @@ import "google/api/routing.proto";
23
23
import "google/datastore/v1/aggregation_result.proto" ;
24
24
import "google/datastore/v1/entity.proto" ;
25
25
import "google/datastore/v1/query.proto" ;
26
- import "google/datastore/v1/query_profile.proto" ;
27
26
import "google/protobuf/timestamp.proto" ;
28
27
29
28
option csharp_namespace = "Google.Cloud.Datastore.V1" ;
@@ -233,11 +232,6 @@ message RunQueryRequest {
233
232
// The GQL query to run. This query must be a non-aggregation query.
234
233
GqlQuery gql_query = 7 ;
235
234
}
236
-
237
- // Optional. The mode in which the query request is processed. This field is
238
- // optional, and when not provided, it defaults to `NORMAL` mode where no
239
- // additional statistics will be returned with the query results.
240
- QueryMode mode = 11 [(google.api.field_behavior ) = OPTIONAL ];
241
235
}
242
236
243
237
// The response for
@@ -257,12 +251,6 @@ message RunQueryResponse {
257
251
// was set in
258
252
// [RunQueryRequest.read_options][google.datastore.v1.RunQueryRequest.read_options].
259
253
bytes transaction = 5 ;
260
-
261
- // Query plan and execution statistics. Note that the returned stats are
262
- // subject to change as Firestore evolves.
263
- //
264
- // This is only present when the request specifies a mode other than `NORMAL`.
265
- ResultSetStats stats = 6 ;
266
254
}
267
255
268
256
// The request for
@@ -294,11 +282,6 @@ message RunAggregationQueryRequest {
294
282
// The GQL query to run. This query must be an aggregation query.
295
283
GqlQuery gql_query = 7 ;
296
284
}
297
-
298
- // Optional. The mode in which the query request is processed. This field is
299
- // optional, and when not provided, it defaults to `NORMAL` mode where no
300
- // additional statistics will be returned with the query results.
301
- QueryMode mode = 10 [(google.api.field_behavior ) = OPTIONAL ];
302
285
}
303
286
304
287
// The response for
@@ -318,12 +301,6 @@ message RunAggregationQueryResponse {
318
301
// was set in
319
302
// [RunAggregationQueryRequest.read_options][google.datastore.v1.RunAggregationQueryRequest.read_options].
320
303
bytes transaction = 5 ;
321
-
322
- // Query plan and execution statistics. Note that the returned stats are
323
- // subject to change as Firestore evolves.
324
- //
325
- // This is only present when the request specifies a mode other than `NORMAL`.
326
- ResultSetStats stats = 6 ;
327
304
}
328
305
329
306
// The request for
0 commit comments