This is an automated email from the ASF dual-hosted git repository. shuwenwei pushed a commit to branch readTsFileTableFunction in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 3d37f72ca0c498c73be1f7c60fcce33d1627de22 Author: shuwenwei <[email protected]> AuthorDate: Mon Jun 1 11:45:24 2026 +0800 fix explain analyze file num --- .../iotdb/db/queryengine/execution/fragment/FragmentInstanceContext.java | 1 + 1 file changed, 1 insertion(+) diff --git a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/fragment/FragmentInstanceContext.java b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/fragment/FragmentInstanceContext.java index 67b36a6d23d..62aa75f85c0 100644 --- a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/fragment/FragmentInstanceContext.java +++ b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/fragment/FragmentInstanceContext.java @@ -820,6 +820,7 @@ public class FragmentInstanceContext extends QueryContext { this.sharedQueryDataSource = new QueryDataSource(Collections.emptyList(), externalTsFileResources); + closedUnseqFileNum = externalTsFileResources.size(); return true; } finally { addInitQueryDataSourceCost(System.nanoTime() - startTime);
