File tree Expand file tree Collapse file tree 3 files changed +19
-4
lines changed
bigtable-dataflow-parent/bigtable-beam-import
bigtable-hbase-1.x-parent/bigtable-hbase-1.x/src/test/java/com/google/cloud/bigtable/hbase1_x Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,17 @@ limitations under the License.
45
45
<type >pom</type >
46
46
<scope >import</scope >
47
47
</dependency >
48
+
49
+ <dependency >
50
+ <groupId >commons-codec</groupId >
51
+ <artifactId >commons-codec</artifactId >
52
+ <version >1.15</version >
53
+ </dependency >
54
+ <dependency >
55
+ <groupId >org.apache.commons</groupId >
56
+ <artifactId >commons-compress</artifactId >
57
+ <version >1.20</version >
58
+ </dependency >
48
59
</dependencies >
49
60
</dependencyManagement >
50
61
Original file line number Diff line number Diff line change @@ -472,7 +472,11 @@ public void mutateRow(
472
472
@ Override
473
473
public void mutateRows (
474
474
MutateRowsRequest request , StreamObserver <MutateRowsResponse > responseObserver ) {
475
- responseObserver .onNext (MutateRowsResponse .newBuilder ().build ());
475
+ MutateRowsResponse .Builder builder = MutateRowsResponse .newBuilder ();
476
+ for (int i = 0 ; i < request .getEntriesCount (); i ++) {
477
+ builder .addEntriesBuilder ().setIndex (i );
478
+ }
479
+ responseObserver .onNext (builder .build ());
476
480
responseObserver .onCompleted ();
477
481
}
478
482
}
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ limitations under the License.
33
33
<parent >
34
34
<groupId >com.google.cloud</groupId >
35
35
<artifactId >google-cloud-shared-config</artifactId >
36
- <version >1.5.5 </version >
36
+ <version >1.5.7 </version >
37
37
</parent >
38
38
39
39
<licenses >
@@ -56,8 +56,8 @@ limitations under the License.
56
56
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
57
57
58
58
<!-- core dependency versions -->
59
- <bigtable .version>2.25.0 </bigtable .version>
60
- <google-cloud-bigtable-emulator .version>0.157.3 </google-cloud-bigtable-emulator .version>
59
+ <bigtable .version>2.27.2 </bigtable .version>
60
+ <google-cloud-bigtable-emulator .version>0.164.2 </google-cloud-bigtable-emulator .version>
61
61
<bigtable-client-core .version>1.28.0</bigtable-client-core .version>
62
62
<grpc-conscrypt .version>2.5.2</grpc-conscrypt .version>
63
63
<!-- keeping at this version to align with hbase-->
You can’t perform that action at this time.
0 commit comments