Skip to content

Commit 33e5b96

Browse files
committed
[Chore] update readme
1 parent 4ff6a6c commit 33e5b96

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ OBKV HBase Client is Java Library that can be used to access data from [OceanBas
66
Create table in the OceanBase database:
77

88
``` sql
9+
CREATE TABLEGROUP test1;
910
CREATE TABLE `test1$family1` (
1011
`K` varbinary(1024) NOT NULL,
1112
`Q` varbinary(256) NOT NULL,
1213
`T` bigint(20) NOT NULL,
1314
`V` varbinary(1024) DEFAULT NULL,
14-
PRIMARY KEY (`K`, `Q`, `T`)
15-
);
15+
PRIMARY KEY (`K`, `Q`, `T`))
16+
TABLEGROUP = test1;
1617
```
1718
**Note:**
1819
* test1: HBase table name;
@@ -23,7 +24,7 @@ Import the dependency for your maven project:
2324
<dependency>
2425
<groupId>com.oceanbase</groupId>
2526
<artifactId>obkv-hbase-client</artifactId>
26-
<version>0.1.5</version>
27+
<version>1.0.0</version>
2728
</dependency>
2829
```
2930
**Note:**

0 commit comments

Comments
 (0)