You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/memtable/AlignedWritableMemChunk.java
+2-17Lines changed: 2 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,6 @@
50
50
importjava.nio.ByteBuffer;
51
51
importjava.util.ArrayList;
52
52
importjava.util.Arrays;
53
-
importjava.util.HashMap;
54
53
importjava.util.LinkedHashMap;
55
54
importjava.util.List;
56
55
importjava.util.Map;
@@ -435,22 +434,8 @@ public void removeColumn(String measurementId) {
435
434
for (AlignedTVListalignedTvList : sortedList) {
436
435
alignedTvList.deleteColumn(columnIndex);
437
436
}
438
-
// notice: the mem chunk and TVList shares data type list,
439
-
// and list.deleteColumn will modify it. Therefore, do not modify it here again.
0 commit comments