@@ -358,7 +358,7 @@ public CompletableFuture<Boolean> thenPut(Put put) {
358
358
() -> RawAsyncTableImpl .this .<Boolean > newCaller (row , put .getPriority (), rpcTimeoutNs )
359
359
.action ((controller , loc , stub ) -> RawAsyncTableImpl .mutate (controller , loc , stub , put ,
360
360
(rn , p ) -> RequestConverter .buildMutateRequest (rn , row , family , qualifier , op , value ,
361
- null , timeRange , p , HConstants .NO_NONCE , HConstants .NO_NONCE ),
361
+ null , timeRange , p , HConstants .NO_NONCE , HConstants .NO_NONCE , false ),
362
362
(c , r ) -> r .getProcessed ()))
363
363
.call (),
364
364
supplier );
@@ -374,7 +374,7 @@ public CompletableFuture<Boolean> thenDelete(Delete delete) {
374
374
() -> RawAsyncTableImpl .this .<Boolean > newCaller (row , delete .getPriority (), rpcTimeoutNs )
375
375
.action ((controller , loc , stub ) -> RawAsyncTableImpl .mutate (controller , loc , stub , delete ,
376
376
(rn , d ) -> RequestConverter .buildMutateRequest (rn , row , family , qualifier , op , value ,
377
- null , timeRange , d , HConstants .NO_NONCE , HConstants .NO_NONCE ),
377
+ null , timeRange , d , HConstants .NO_NONCE , HConstants .NO_NONCE , false ),
378
378
(c , r ) -> r .getProcessed ()))
379
379
.call (),
380
380
supplier );
@@ -392,7 +392,7 @@ public CompletableFuture<Boolean> thenMutate(RowMutations mutations) {
392
392
.action ((controller , loc , stub ) -> RawAsyncTableImpl .this .mutateRow (controller , loc , stub ,
393
393
mutations ,
394
394
(rn , rm ) -> RequestConverter .buildMultiRequest (rn , row , family , qualifier , op , value ,
395
- null , timeRange , rm , HConstants .NO_NONCE , HConstants .NO_NONCE ),
395
+ null , timeRange , rm , HConstants .NO_NONCE , HConstants .NO_NONCE , false ),
396
396
CheckAndMutateResult ::isSuccess ))
397
397
.call (), supplier );
398
398
}
@@ -433,7 +433,7 @@ public CompletableFuture<Boolean> thenPut(Put put) {
433
433
() -> RawAsyncTableImpl .this .<Boolean > newCaller (row , put .getPriority (), rpcTimeoutNs )
434
434
.action ((controller , loc , stub ) -> RawAsyncTableImpl .mutate (controller , loc , stub , put ,
435
435
(rn , p ) -> RequestConverter .buildMutateRequest (rn , row , null , null , null , null , filter ,
436
- timeRange , p , HConstants .NO_NONCE , HConstants .NO_NONCE ),
436
+ timeRange , p , HConstants .NO_NONCE , HConstants .NO_NONCE , false ),
437
437
(c , r ) -> r .getProcessed ()))
438
438
.call (),
439
439
supplier );
@@ -448,7 +448,7 @@ public CompletableFuture<Boolean> thenDelete(Delete delete) {
448
448
() -> RawAsyncTableImpl .this .<Boolean > newCaller (row , delete .getPriority (), rpcTimeoutNs )
449
449
.action ((controller , loc , stub ) -> RawAsyncTableImpl .mutate (controller , loc , stub , delete ,
450
450
(rn , d ) -> RequestConverter .buildMutateRequest (rn , row , null , null , null , null , filter ,
451
- timeRange , d , HConstants .NO_NONCE , HConstants .NO_NONCE ),
451
+ timeRange , d , HConstants .NO_NONCE , HConstants .NO_NONCE , false ),
452
452
(c , r ) -> r .getProcessed ()))
453
453
.call (),
454
454
supplier );
@@ -465,7 +465,7 @@ public CompletableFuture<Boolean> thenMutate(RowMutations mutations) {
465
465
.action ((controller , loc , stub ) -> RawAsyncTableImpl .this .mutateRow (controller , loc , stub ,
466
466
mutations ,
467
467
(rn , rm ) -> RequestConverter .buildMultiRequest (rn , row , null , null , null , null , filter ,
468
- timeRange , rm , HConstants .NO_NONCE , HConstants .NO_NONCE ),
468
+ timeRange , rm , HConstants .NO_NONCE , HConstants .NO_NONCE , false ),
469
469
CheckAndMutateResult ::isSuccess ))
470
470
.call (), supplier );
471
471
}
@@ -500,7 +500,8 @@ public CompletableFuture<CheckAndMutateResult> checkAndMutate(CheckAndMutate che
500
500
(rn , m ) -> RequestConverter .buildMutateRequest (rn , checkAndMutate .getRow (),
501
501
checkAndMutate .getFamily (), checkAndMutate .getQualifier (),
502
502
checkAndMutate .getCompareOp (), checkAndMutate .getValue (),
503
- checkAndMutate .getFilter (), checkAndMutate .getTimeRange (), m , nonceGroup , nonce ),
503
+ checkAndMutate .getFilter (), checkAndMutate .getTimeRange (), m , nonceGroup , nonce ,
504
+ checkAndMutate .isQueryMetricsEnabled ()),
504
505
(c , r ) -> ResponseConverter .getCheckAndMutateResult (r , c .cellScanner ())))
505
506
.call ();
506
507
} else if (checkAndMutate .getAction () instanceof RowMutations ) {
@@ -516,7 +517,8 @@ CheckAndMutateResult> mutateRow(controller, loc, stub, rowMutations,
516
517
(rn , rm ) -> RequestConverter .buildMultiRequest (rn , checkAndMutate .getRow (),
517
518
checkAndMutate .getFamily (), checkAndMutate .getQualifier (),
518
519
checkAndMutate .getCompareOp (), checkAndMutate .getValue (),
519
- checkAndMutate .getFilter (), checkAndMutate .getTimeRange (), rm , nonceGroup , nonce ),
520
+ checkAndMutate .getFilter (), checkAndMutate .getTimeRange (), rm , nonceGroup , nonce ,
521
+ checkAndMutate .isQueryMetricsEnabled ()),
520
522
resp -> resp ))
521
523
.call ();
522
524
} else {
0 commit comments