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

rong pushed a commit to branch rc/1.3.3
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/rc/1.3.3 by this push:
     new ee81dbf4c40 [To rc/1.3.3] Pipe: Fixed the 
TsFileInsertionDataContainerTest (#13323)
ee81dbf4c40 is described below

commit ee81dbf4c401c599f703c1e1625ead59970456e6
Author: Caideyipi <[email protected]>
AuthorDate: Wed Aug 28 14:43:43 2024 +0800

    [To rc/1.3.3] Pipe: Fixed the TsFileInsertionDataContainerTest (#13323)
---
 .../apache/iotdb/db/pipe/event/TsFileInsertionDataContainerTest.java   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/iotdb-core/datanode/src/test/java/org/apache/iotdb/db/pipe/event/TsFileInsertionDataContainerTest.java
 
b/iotdb-core/datanode/src/test/java/org/apache/iotdb/db/pipe/event/TsFileInsertionDataContainerTest.java
index da49f31cdad..e345e253b4b 100644
--- 
a/iotdb-core/datanode/src/test/java/org/apache/iotdb/db/pipe/event/TsFileInsertionDataContainerTest.java
+++ 
b/iotdb-core/datanode/src/test/java/org/apache/iotdb/db/pipe/event/TsFileInsertionDataContainerTest.java
@@ -20,7 +20,6 @@
 package org.apache.iotdb.db.pipe.event;
 
 import org.apache.iotdb.commons.exception.IllegalPathException;
-import org.apache.iotdb.commons.path.PartialPath;
 import org.apache.iotdb.commons.pipe.pattern.IoTDBPipePattern;
 import org.apache.iotdb.commons.pipe.pattern.PipePattern;
 import org.apache.iotdb.commons.pipe.pattern.PrefixPipePattern;
@@ -538,7 +537,7 @@ public class TsFileInsertionDataContainerTest {
     t.addValue("s2", 1, 2L);
 
     try (final TsFileWriter writer = new TsFileWriter(alignedTsFile)) {
-      writer.registerAlignedTimeseries(new PartialPath("root.sg.d"), 
schemaList);
+      writer.registerAlignedTimeseries(new Path("root.sg.d"), schemaList);
       writer.writeAligned(t);
     }
     testTsFilePointNum(

Reply via email to