Repository: ignite Updated Branches: refs/heads/ignite-3478 68b61f6f5 -> f8c5cc5dc
ignite-3478 Fixed compilation Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/f8c5cc5d Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/f8c5cc5d Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/f8c5cc5d Branch: refs/heads/ignite-3478 Commit: f8c5cc5dcce9c2219b68c923221e901cae35733b Parents: 68b61f6 Author: sboikov <[email protected]> Authored: Fri Oct 27 11:47:24 2017 +0300 Committer: sboikov <[email protected]> Committed: Fri Oct 27 11:47:24 2017 +0300 ---------------------------------------------------------------------- .../org/apache/ignite/development/utils/IgniteWalConverter.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/f8c5cc5d/modules/dev-utils/src/main/java/org/apache/ignite/development/utils/IgniteWalConverter.java ---------------------------------------------------------------------- diff --git a/modules/dev-utils/src/main/java/org/apache/ignite/development/utils/IgniteWalConverter.java b/modules/dev-utils/src/main/java/org/apache/ignite/development/utils/IgniteWalConverter.java index f3268d9..5165cee 100644 --- a/modules/dev-utils/src/main/java/org/apache/ignite/development/utils/IgniteWalConverter.java +++ b/modules/dev-utils/src/main/java/org/apache/ignite/development/utils/IgniteWalConverter.java @@ -28,6 +28,8 @@ import org.apache.ignite.internal.processors.query.h2.database.io.H2ExtrasInnerI import org.apache.ignite.internal.processors.query.h2.database.io.H2ExtrasLeafIO; import org.apache.ignite.internal.processors.query.h2.database.io.H2InnerIO; import org.apache.ignite.internal.processors.query.h2.database.io.H2LeafIO; +import org.apache.ignite.internal.processors.query.h2.database.io.H2MvccInnerIO; +import org.apache.ignite.internal.processors.query.h2.database.io.H2MvccLeafIO; import org.apache.ignite.lang.IgniteBiTuple; import org.apache.ignite.logger.NullLogger; @@ -37,6 +39,7 @@ import org.apache.ignite.logger.NullLogger; public class IgniteWalConverter { /** * @param args Args. + * @throws Exception If failed. */ public static void main(String[] args) throws Exception { if (args.length < 2) @@ -45,7 +48,7 @@ public class IgniteWalConverter { "\t2. Path to dir with wal files.\n" + "\t3. (Optional) Path to dir with archive wal files."); - PageIO.registerH2(H2InnerIO.VERSIONS, H2LeafIO.VERSIONS); + PageIO.registerH2(H2InnerIO.VERSIONS, H2LeafIO.VERSIONS, H2MvccInnerIO.VERSIONS, H2MvccLeafIO.VERSIONS); H2ExtrasInnerIO.register(); H2ExtrasLeafIO.register();
