File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -6,13 +6,14 @@ OBKV HBase Client is Java Library that can be used to access data from [OceanBas
6
6
Create table in the OceanBase database:
7
7
8
8
``` sql
9
+ CREATE TABLEGROUP test1;
9
10
CREATE TABLE ` test1$family1` (
10
11
` K` varbinary(1024 ) NOT NULL ,
11
12
` Q` varbinary(256 ) NOT NULL ,
12
13
` T` bigint (20 ) NOT NULL ,
13
14
` V` varbinary(1024 ) DEFAULT NULL ,
14
- PRIMARY KEY (` K` , ` Q` , ` T` )
15
- ) ;
15
+ PRIMARY KEY (` K` , ` Q` , ` T` ))
16
+ TABLEGROUP = test1 ;
16
17
```
17
18
** Note:**
18
19
* test1: HBase table name;
@@ -23,7 +24,7 @@ Import the dependency for your maven project:
23
24
<dependency >
24
25
<groupId >com.oceanbase</groupId >
25
26
<artifactId >obkv-hbase-client</artifactId >
26
- <version >0.1.5 </version >
27
+ <version >2.0.0 </version >
27
28
</dependency >
28
29
```
29
30
** Note:**
You can’t perform that action at this time.
0 commit comments