This is an automated email from the ASF dual-hosted git repository. caogaofei pushed a commit to branch last_cache in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit b422372997099cdcfafd0c76cea343e314b85cb5 Author: Beyyes <[email protected]> AuthorDate: Fri Oct 25 20:41:17 2024 +0800 tmp --- .../operator/source/relational/TableAggregationTableScanOperator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/operator/source/relational/TableAggregationTableScanOperator.java b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/operator/source/relational/TableAggregationTableScanOperator.java index 34e8f4ecd1f..ad1de25c0d4 100644 --- a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/operator/source/relational/TableAggregationTableScanOperator.java +++ b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/operator/source/relational/TableAggregationTableScanOperator.java @@ -846,7 +846,7 @@ public class TableAggregationTableScanOperator extends AbstractDataSourceOperato + MemoryEstimationHelper.getEstimatedSizeOfAccountableObject(seriesScanUtil) + MemoryEstimationHelper.getEstimatedSizeOfAccountableObject(operatorContext) + MemoryEstimationHelper.getEstimatedSizeOfAccountableObject(sourceId) - + tableAggregators.stream().mapToLong(TableAggregator::getEstimatedSize).sum() + + tableAggregators.stream().mapToLong(TableAggregator::getEstimatedSize).sum() + (resultTsBlockBuilder == null ? 0 : resultTsBlockBuilder.getRetainedSizeInBytes()) + RamUsageEstimator.sizeOfCollection(deviceEntries); }
