Skip to content

Commit

Permalink
fix IT
Browse files Browse the repository at this point in the history
  • Loading branch information
HTHou committed Jan 25, 2025
1 parent d0a22a3 commit 1eca24e
Showing 1 changed file with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -514,11 +514,15 @@ public long getLastPoint() {

@Override
public boolean isEmpty() {
return list.rowCount() == 0
|| measurementIndexMap.isEmpty()
|| (ignoreAllNullRows
&& list.getAllValueColDeletedMap() != null
&& list.getAllValueColDeletedMap().isAllMarked());
if (list.rowCount() == 0) {
return true;
}
if (ignoreAllNullRows) {
return measurementIndexMap.isEmpty()
|| (list.getAllValueColDeletedMap() != null
&& list.getAllValueColDeletedMap().isAllMarked());
}
return false;
}

@Override
Expand Down

0 comments on commit 1eca24e

Please sign in to comment.