From 52ccd86a5f1438d6ac32f5e4d70ced9517807049 Mon Sep 17 00:00:00 2001 From: Jialiang Tan Date: Thu, 1 Feb 2024 13:41:01 -0800 Subject: [PATCH] Deprecate spillDiskWrites (#8565) Summary: Pull Request resolved: https://github.com/facebookincubator/velox/pull/8565 Reviewed By: xiaoxmeng Differential Revision: D53136624 Pulled By: tanjialiang fbshipit-source-id: fa1c8250e13b521d46c29db752b72fabdb2ebba1 --- velox/common/base/SpillStats.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/velox/common/base/SpillStats.h b/velox/common/base/SpillStats.h index ff276853a4c4..c1d31869aef0 100644 --- a/velox/common/base/SpillStats.h +++ b/velox/common/base/SpillStats.h @@ -47,8 +47,6 @@ struct SpillStats { /// The number of spill writer flushes, equivalent to number of write calls to /// underlying filesystem. uint64_t spillWrites{0}; - // TODO(jtan6): Remove after presto native lands - uint64_t spillDiskWrites{0}; /// The time spent on copy out serialized rows for disk write. If compression /// is enabled, this includes the compression time. uint64_t spillFlushTimeUs{0};