From 4ff6a6cec64039b27838a6cde9e9009f2c0b72b4 Mon Sep 17 00:00:00 2001 From: "shenyunlong.syl" Date: Thu, 28 Nov 2024 15:47:17 +0800 Subject: [PATCH 1/2] [Chore] modify pom for 1.x obkv-hbase --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index ac53a096..e46261f9 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.oceanbase obkv-hbase-client - 0.1.6-SNAPSHOT + 1.0.0-SNAPSHOT ${project.groupId}:${project.artifactId} OceanBase JavaClient for HBaseApi @@ -54,7 +54,7 @@ ${project.encoding} UTF-8 1.7.21 - 1.2.14.4-SNAPSHOT + 1.3.0 From 33e5b969115fb028eb09c09ff931920006fcb9ce Mon Sep 17 00:00:00 2001 From: "shenyunlong.syl" Date: Thu, 28 Nov 2024 17:25:03 +0800 Subject: [PATCH 2/2] [Chore] update readme --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b8b5afcd..bc407ad6 100644 --- a/README.md +++ b/README.md @@ -6,13 +6,14 @@ OBKV HBase Client is Java Library that can be used to access data from [OceanBas Create table in the OceanBase database: ``` sql +CREATE TABLEGROUP test1; CREATE TABLE `test1$family1` ( `K` varbinary(1024) NOT NULL, `Q` varbinary(256) NOT NULL, `T` bigint(20) NOT NULL, `V` varbinary(1024) DEFAULT NULL, - PRIMARY KEY (`K`, `Q`, `T`) -); + PRIMARY KEY (`K`, `Q`, `T`)) +TABLEGROUP = test1; ``` **Note:** * test1: HBase table name; @@ -23,7 +24,7 @@ Import the dependency for your maven project: com.oceanbase obkv-hbase-client - 0.1.5 + 1.0.0 ``` **Note:**