Skip to content

Commit

Permalink
Release 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
neoremind committed Jun 5, 2020
1 parent 4e82922 commit c8207ac
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 21 deletions.
23 changes: 11 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Supported column types are listed below. Java type mapping refer to [docs](docs/
<dependency>
<groupId>com.alibaba.database</groupId>
<artifactId>innodb-java-reader</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
</dependency>
```

Expand Down Expand Up @@ -553,9 +553,9 @@ Usage shows as below.
````
usage: java -jar innodb-java-reader-cli.jar [-args <arg>] [-c <arg>]
[-delimiter <arg>] [-desc] [-h] [-i <arg>] [-iomode <arg>] [-json]
[-jsonpretty] [-o <arg>] [-projection <arg>] [-s <arg>]
[-showheader] [-skname <arg>] [-skordinal <arg>] [-skrootpage
<arg>]
[-jsonpretty] [-nullstring <arg>] [-o <arg>] [-projection <arg>]
[-quotemode <arg>] [-s <arg>] [-showheader] [-skname <arg>]
[-skordinal <arg>] [-skrootpage <arg>]
-args <arg> arguments
-c,--command <arg> mandatory. command to run, valid
commands are:
Expand All @@ -565,32 +565,31 @@ usage: java -jar innodb-java-reader-cli.jar [-args <arg>] [-c <arg>]
gen-lsn-heatmap,gen-filling-rate-
heatmap,get-all-index-page-fillin
g-rate
-quotemode,--quote-mode <arg> value quote mode, valid modes
are:
all,nonnull,nonnumeric,none
default is none
-delimiter,--delimiter <arg> field delimiter, default is tab
-nullstring,--null-string <arg> null value string, default is
"null"
-desc,--desc if records sorted in descending
order, works for query all and
range query
-h,--help usage
-i,--ibd-file-path <arg> mandatory. innodb file path with
suffix of .ibd
-iomode,--output-io-mode <arg> output io mode, valid mode are:
-iomode,--output-io-mode <arg> output io mode, valid modes are:
buffer,mmap,direct
-json,--json-style set to true if you would like to
show page info in json format
style
-jsonpretty,--json-pretty-style set to true if you would like to
show page info in json pretty
format style
-nullstring,--null-string <arg> null value string, default is
"null"
-o,--output <arg> save result to file instead of
console, the argument is the file
path
-projection,--projection <arg> projection list with column names
delimited by comma
-quotemode,--quote-mode <arg> value quote mode, valid modes
are: all,nonnull,nonnumeric,none,
default is none
-s,--create-table-sql-file-path <arg> create table sql file path, the
sql is DDL as SHOW CREATE TABLE
<table_name>, the file can
Expand Down Expand Up @@ -822,4 +821,4 @@ TPC-H `LINEITEM` table scan result is as below.
* Support MySQL 8.0 newly introduced LOB page.
* Load table metadata from system tablespace.
* Support compressed table.
* Support spatial indexes.
* Support fulltext and spatial indexes.
4 changes: 2 additions & 2 deletions innodb-heatmap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
<groupId>com.alibaba.database</groupId>
<artifactId>innodb-java-reader-parent</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.0.5</version>
<version>1.0.6</version>
</parent>

<groupId>com.alibaba.database</groupId>
<artifactId>innodb-heatmap</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
<packaging>jar</packaging>
<name>innodb-heatmap</name>
<description>innodb-heatmap</description>
Expand Down
4 changes: 2 additions & 2 deletions innodb-java-reader-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
<groupId>com.alibaba.database</groupId>
<artifactId>innodb-java-reader-parent</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.0.5</version>
<version>1.0.6</version>
</parent>

<groupId>com.alibaba.database</groupId>
<artifactId>innodb-java-reader-cli</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
<packaging>jar</packaging>
<name>innodb-java-reader-cli</name>
<description>innodb-java-reader-cli</description>
Expand Down
4 changes: 2 additions & 2 deletions innodb-java-reader-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
<groupId>com.alibaba.database</groupId>
<artifactId>innodb-java-reader-parent</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.0.5</version>
<version>1.0.6</version>
</parent>

<groupId>com.alibaba.database</groupId>
<artifactId>innodb-java-reader-demo</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
<packaging>jar</packaging>
<name>innodb-java-reader-demo</name>
<description>innodb-java-reader-demo</description>
Expand Down
4 changes: 2 additions & 2 deletions innodb-java-reader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
<groupId>com.alibaba.database</groupId>
<artifactId>innodb-java-reader-parent</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.0.5</version>
<version>1.0.6</version>
</parent>

<groupId>com.alibaba.database</groupId>
<artifactId>innodb-java-reader</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
<packaging>jar</packaging>
<name>innodb-java-reader</name>
<description>innodb-java-reader</description>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.alibaba.database</groupId>
<artifactId>innodb-java-reader-parent</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
<name>innodb-java-reader-parent</name>
<packaging>pom</packaging>
<description>A library and command-line tool to access MySQL InnoDB data file directly in Java</description>
Expand Down

0 comments on commit c8207ac

Please sign in to comment.