You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by xi...@apache.org on 2022/07/18 09:52:12 UTC

[iotdb] branch iotdb-3791-test updated: fix compliation error

This is an automated email from the ASF dual-hosted git repository.

xingtanzjr pushed a commit to branch iotdb-3791-test
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/iotdb-3791-test by this push:
     new 74a0983aa9 fix compliation error
74a0983aa9 is described below

commit 74a0983aa9025ef57ef50d071f1fcf29ca4a5030
Author: Jinrui.Zhang <xi...@gmail.com>
AuthorDate: Mon Jul 18 17:52:01 2022 +0800

    fix compliation error
---
 .../iotdb/db/wal/recover/file/UnsealedTsFileRecoverPerformerTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/server/src/test/java/org/apache/iotdb/db/wal/recover/file/UnsealedTsFileRecoverPerformerTest.java b/server/src/test/java/org/apache/iotdb/db/wal/recover/file/UnsealedTsFileRecoverPerformerTest.java
index e7c00c6a5d..d6ebf64d70 100644
--- a/server/src/test/java/org/apache/iotdb/db/wal/recover/file/UnsealedTsFileRecoverPerformerTest.java
+++ b/server/src/test/java/org/apache/iotdb/db/wal/recover/file/UnsealedTsFileRecoverPerformerTest.java
@@ -307,8 +307,8 @@ public class UnsealedTsFileRecoverPerformerTest {
     insertTabletNode.markFailedMeasurement(0, new Exception());
 
     int fakeMemTableId = 1;
-    WALEntry walEntry1 = new WALEntry(fakeMemTableId++, insertRowNode);
-    WALEntry walEntry2 = new WALEntry(fakeMemTableId, insertTabletNode);
+    WALEntry walEntry1 = new WALInfoEntry(fakeMemTableId++, insertRowNode);
+    WALEntry walEntry2 = new WALInfoEntry(fakeMemTableId, insertTabletNode);
     // recover
     tsFileResource = new TsFileResource(file);
     // vsg processor is used to test IdTable, don't test IdTable here