Skip to content

Commit

Permalink
release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
neoremind committed Jan 14, 2020
1 parent 0a1950b commit 1125c05
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
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</groupId>
<artifactId>innodb-java-reader-parent</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<groupId>com.alibaba</groupId>
<artifactId>innodb-heatmap</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</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</groupId>
<artifactId>innodb-java-reader-parent</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<groupId>com.alibaba</groupId>
<artifactId>innodb-java-reader-cli</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</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</groupId>
<artifactId>innodb-java-reader-parent</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<groupId>com.alibaba</groupId>
<artifactId>innodb-java-reader-demo</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</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</groupId>
<artifactId>innodb-java-reader-parent</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<groupId>com.alibaba</groupId>
<artifactId>innodb-java-reader</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>jar</packaging>
<name>innodb-java-reader</name>
<description>innodb-java-reader</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,22 +85,22 @@ public boolean isRootPage() {
* Get used bytes in a page. For example, given a page like below, the used bytes is
* <code>1000 + 376 + 8 - 240 = 1144</code>
* <pre>
* 0 +----------------------+ <= page offset 0
* 0 +----------------------+ ... page offset 0
* | FilHeader |
* 38 +----------------------+
* 138 | row 1 |
* 400 | row 2 |
* 660 | row 3 (mark deleted) | <= Deleted record will be counted as free space
* 660 | row 3 (mark deleted) | ... Deleted record will be counted as free space
* 800 | row 4 |
* 920 | row 5 | <= Heap top position. The byte offset of the "end" of the currently used space
* 920 | row 5 | ... Heap top position. The byte offset of the "end" of the currently used space
* 1000 +----------------------+
* | |
* | | <= Free space
* | | ... Free space
* 16000 +----------------------+
* | Directory slots |
* 16376 +----------------------+
* | FilTrailer |
* 16384 +----------------------+ <= page offset SIZE_OF_PAGE, usually 16KiB
* 16384 +----------------------+ ... page offset SIZE_OF_PAGE, usually 16KiB
* </pre>
*
* @return used bytes
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</groupId>
<artifactId>innodb-java-reader-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</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 1125c05

Please sign in to comment.