Skip to content

Commit f3c6586

Browse files
committed
fix
1 parent dbaef54 commit f3c6586

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iotdb-core/datanode/src/test/java/org/apache/iotdb/db/pipe/event/TsFileInsertionDataContainerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ private int getNonNullSize(final Tablet tablet) {
625625
int count = 0;
626626
for (int i = 0; i < tablet.rowSize; ++i) {
627627
for (int j = 0; j < tablet.getSchemas().size(); ++j) {
628-
if (tablet.bitMaps == null || tablet.bitMaps[i] == null || !tablet.bitMaps[i].isMarked(j)) {
628+
if (tablet.bitMaps == null || tablet.bitMaps[j] == null || !tablet.bitMaps[j].isMarked(i)) {
629629
++count;
630630
}
631631
}

0 commit comments

Comments
 (0)