This is an automated email from the ASF dual-hosted git repository.
caogaofei pushed a commit to branch fix_topk_1.3
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/fix_topk_1.3 by this push:
new cd645c7664d add it
cd645c7664d is described below
commit cd645c7664dab034e338dc817c5f68e40f558f64
Author: Beyyes <[email protected]>
AuthorDate: Mon Dec 2 16:49:34 2024 +0800
add it
---
.../java/org/apache/iotdb/db/it/orderBy/IoTDBOrderByIT.java | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git
a/integration-test/src/test/java/org/apache/iotdb/db/it/orderBy/IoTDBOrderByIT.java
b/integration-test/src/test/java/org/apache/iotdb/db/it/orderBy/IoTDBOrderByIT.java
index d8f9b5c563f..889a1fab242 100644
---
a/integration-test/src/test/java/org/apache/iotdb/db/it/orderBy/IoTDBOrderByIT.java
+++
b/integration-test/src/test/java/org/apache/iotdb/db/it/orderBy/IoTDBOrderByIT.java
@@ -100,11 +100,11 @@ public class IoTDBOrderByIT {
private static final String[] sql3 =
new String[] {
- "CREATE TIMESERIES root.db.d.v_timestamp WITH DATATYPE=TIMESTAMP,
ENCODING=RLE",
- "CREATE TIMESERIES root.db.d.v_string WITH DATATYPE=STRING,
ENCODING=RLE",
- "CREATE TIMESERIES root.sg.d.v_date WITH DATATYPE=DATE, ENCODING=RLE",
- "CREATE TIMESERIES root.sg.d.v_blob WITH DATATYPE=BLOB,
ENCODING=PLAIN",
- "insert into root.sg.d(timestamp,v_timestamp,v_string,v_date,v_blob)
values(1,2024-09-20T06:15:35.000+00:00,'sss','2012-12-12',X'108DCD62')",
+ "CREATE TIMESERIES root.sg33.d.v_timestamp WITH DATATYPE=TIMESTAMP,
ENCODING=RLE",
+ "CREATE TIMESERIES root.sg33.d.v_string WITH DATATYPE=STRING,
ENCODING=RLE",
+ "CREATE TIMESERIES root.sg33.d.v_date WITH DATATYPE=DATE,
ENCODING=RLE",
+ "CREATE TIMESERIES root.sg33.d.v_blob WITH DATATYPE=BLOB,
ENCODING=PLAIN",
+ "insert into root.sg33.d(timestamp,v_timestamp,v_string,v_date,v_blob)
values(1,2024-09-20T06:15:35.000+00:00,'sss','2012-12-12',X'108DCD62')",
};
@BeforeClass