Skip to content

Commit c8207ac

Browse files
committed
Release 1.0.6
1 parent 4e82922 commit c8207ac

File tree

6 files changed

+20
-21
lines changed

6 files changed

+20
-21
lines changed

README.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Supported column types are listed below. Java type mapping refer to [docs](docs/
6767
<dependency>
6868
<groupId>com.alibaba.database</groupId>
6969
<artifactId>innodb-java-reader</artifactId>
70-
<version>1.0.5</version>
70+
<version>1.0.6</version>
7171
</dependency>
7272
```
7373

@@ -553,9 +553,9 @@ Usage shows as below.
553553
````
554554
usage: java -jar innodb-java-reader-cli.jar [-args <arg>] [-c <arg>]
555555
[-delimiter <arg>] [-desc] [-h] [-i <arg>] [-iomode <arg>] [-json]
556-
[-jsonpretty] [-o <arg>] [-projection <arg>] [-s <arg>]
557-
[-showheader] [-skname <arg>] [-skordinal <arg>] [-skrootpage
558-
<arg>]
556+
[-jsonpretty] [-nullstring <arg>] [-o <arg>] [-projection <arg>]
557+
[-quotemode <arg>] [-s <arg>] [-showheader] [-skname <arg>]
558+
[-skordinal <arg>] [-skrootpage <arg>]
559559
-args <arg> arguments
560560
-c,--command <arg> mandatory. command to run, valid
561561
commands are:
@@ -565,32 +565,31 @@ usage: java -jar innodb-java-reader-cli.jar [-args <arg>] [-c <arg>]
565565
gen-lsn-heatmap,gen-filling-rate-
566566
heatmap,get-all-index-page-fillin
567567
g-rate
568-
-quotemode,--quote-mode <arg> value quote mode, valid modes
569-
are:
570-
all,nonnull,nonnumeric,none
571-
default is none
572568
-delimiter,--delimiter <arg> field delimiter, default is tab
573-
-nullstring,--null-string <arg> null value string, default is
574-
"null"
575569
-desc,--desc if records sorted in descending
576570
order, works for query all and
577571
range query
578572
-h,--help usage
579573
-i,--ibd-file-path <arg> mandatory. innodb file path with
580574
suffix of .ibd
581-
-iomode,--output-io-mode <arg> output io mode, valid mode are:
575+
-iomode,--output-io-mode <arg> output io mode, valid modes are:
582576
buffer,mmap,direct
583577
-json,--json-style set to true if you would like to
584578
show page info in json format
585579
style
586580
-jsonpretty,--json-pretty-style set to true if you would like to
587581
show page info in json pretty
588582
format style
583+
-nullstring,--null-string <arg> null value string, default is
584+
"null"
589585
-o,--output <arg> save result to file instead of
590586
console, the argument is the file
591587
path
592588
-projection,--projection <arg> projection list with column names
593589
delimited by comma
590+
-quotemode,--quote-mode <arg> value quote mode, valid modes
591+
are: all,nonnull,nonnumeric,none,
592+
default is none
594593
-s,--create-table-sql-file-path <arg> create table sql file path, the
595594
sql is DDL as SHOW CREATE TABLE
596595
<table_name>, the file can
@@ -822,4 +821,4 @@ TPC-H `LINEITEM` table scan result is as below.
822821
* Support MySQL 8.0 newly introduced LOB page.
823822
* Load table metadata from system tablespace.
824823
* Support compressed table.
825-
* Support spatial indexes.
824+
* Support fulltext and spatial indexes.

innodb-heatmap/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
<groupId>com.alibaba.database</groupId>
99
<artifactId>innodb-java-reader-parent</artifactId>
1010
<relativePath>../pom.xml</relativePath>
11-
<version>1.0.5</version>
11+
<version>1.0.6</version>
1212
</parent>
1313

1414
<groupId>com.alibaba.database</groupId>
1515
<artifactId>innodb-heatmap</artifactId>
16-
<version>1.0.5</version>
16+
<version>1.0.6</version>
1717
<packaging>jar</packaging>
1818
<name>innodb-heatmap</name>
1919
<description>innodb-heatmap</description>

innodb-java-reader-cli/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
<groupId>com.alibaba.database</groupId>
99
<artifactId>innodb-java-reader-parent</artifactId>
1010
<relativePath>../pom.xml</relativePath>
11-
<version>1.0.5</version>
11+
<version>1.0.6</version>
1212
</parent>
1313

1414
<groupId>com.alibaba.database</groupId>
1515
<artifactId>innodb-java-reader-cli</artifactId>
16-
<version>1.0.5</version>
16+
<version>1.0.6</version>
1717
<packaging>jar</packaging>
1818
<name>innodb-java-reader-cli</name>
1919
<description>innodb-java-reader-cli</description>

innodb-java-reader-demo/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
<groupId>com.alibaba.database</groupId>
99
<artifactId>innodb-java-reader-parent</artifactId>
1010
<relativePath>../pom.xml</relativePath>
11-
<version>1.0.5</version>
11+
<version>1.0.6</version>
1212
</parent>
1313

1414
<groupId>com.alibaba.database</groupId>
1515
<artifactId>innodb-java-reader-demo</artifactId>
16-
<version>1.0.5</version>
16+
<version>1.0.6</version>
1717
<packaging>jar</packaging>
1818
<name>innodb-java-reader-demo</name>
1919
<description>innodb-java-reader-demo</description>

innodb-java-reader/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
<groupId>com.alibaba.database</groupId>
99
<artifactId>innodb-java-reader-parent</artifactId>
1010
<relativePath>../pom.xml</relativePath>
11-
<version>1.0.5</version>
11+
<version>1.0.6</version>
1212
</parent>
1313

1414
<groupId>com.alibaba.database</groupId>
1515
<artifactId>innodb-java-reader</artifactId>
16-
<version>1.0.5</version>
16+
<version>1.0.6</version>
1717
<packaging>jar</packaging>
1818
<name>innodb-java-reader</name>
1919
<description>innodb-java-reader</description>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>com.alibaba.database</groupId>
88
<artifactId>innodb-java-reader-parent</artifactId>
9-
<version>1.0.5</version>
9+
<version>1.0.6</version>
1010
<name>innodb-java-reader-parent</name>
1111
<packaging>pom</packaging>
1212
<description>A library and command-line tool to access MySQL InnoDB data file directly in Java</description>

0 commit comments

Comments
 (0)