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

shuwenwei pushed a commit to branch fixBug0902-1.3
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit 47ab4d3b9044158f892c2d119e593a064bd36e9b
Author: shuwenwei <[email protected]>
AuthorDate: Tue Sep 2 16:29:15 2025 +0800

    remove useless methods
---
 .../src/main/java/org/apache/iotdb/db/utils/datastructure/TVList.java | 4 ----
 1 file changed, 4 deletions(-)

diff --git 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/utils/datastructure/TVList.java
 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/utils/datastructure/TVList.java
index d392d4caa4b..c88968d6ffa 100644
--- 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/utils/datastructure/TVList.java
+++ 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/utils/datastructure/TVList.java
@@ -246,10 +246,6 @@ public abstract class TVList implements WALEntryValue {
     return indices.get(arrayIndex)[elementIndex];
   }
 
-  public int getValueIndex(int index, Ordering ordering) {
-    return ordering.isAscending() ? getValueIndex(index) : 
getValueIndex(rowCount - 1 - index);
-  }
-
   protected void markNullValue(int arrayIndex, int elementIndex) {
     // init bitMap if doesn't have
     if (bitMap == null) {

Reply via email to