File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
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 >1.0.0 </version >
27
28
</dependency >
28
29
```
29
30
** Note:**
Original file line number Diff line number Diff line change 4
4
5
5
<groupId >com.oceanbase</groupId >
6
6
<artifactId >obkv-hbase-client</artifactId >
7
- <version >0.1.6 -SNAPSHOT</version >
7
+ <version >1.0.0 -SNAPSHOT</version >
8
8
9
9
<name >${project.groupId} :${project.artifactId} </name >
10
10
<description >OceanBase JavaClient for HBaseApi</description >
54
54
<project .build.sourceEncoding>${project.encoding} </project .build.sourceEncoding>
55
55
<project .encoding>UTF-8</project .encoding>
56
56
<slf4j .version>1.7.21</slf4j .version>
57
- <table .client.version>1.2.14.4-SNAPSHOT </table .client.version>
57
+ <table .client.version>1.3.0 </table .client.version>
58
58
</properties >
59
59
60
60
<dependencyManagement >
You can’t perform that action at this time.
0 commit comments