diff options
author | Pisarenko Grigoriy <grigoriypisar@ydb.tech> | 2024-12-19 10:17:00 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-19 10:17:00 +0300 |
commit | ef8db78c6fd55cd703c35bd2dc08c18399f5bbfc (patch) | |
tree | 0029fc15f7c2a1322ead4db2eed8761ed887df20 | |
parent | 01d95e5e6e0300d9461af676a5cb3bcfafd7fcbd (diff) | |
download | ydb-ef8db78c6fd55cd703c35bd2dc08c18399f5bbfc.tar.gz |
YQ-3970 RD fixed memory leak in filters (#12739)
-rw-r--r-- | ydb/core/fq/libs/row_dispatcher/format_handler/filters/purecalc_filter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/fq/libs/row_dispatcher/format_handler/filters/purecalc_filter.cpp b/ydb/core/fq/libs/row_dispatcher/format_handler/filters/purecalc_filter.cpp index be4ce2a97d..b9b5bfd7c0 100644 --- a/ydb/core/fq/libs/row_dispatcher/format_handler/filters/purecalc_filter.cpp +++ b/ydb/core/fq/libs/row_dispatcher/format_handler/filters/purecalc_filter.cpp @@ -123,7 +123,7 @@ public: // Clear cache after each object because // values allocated on another allocator and should be released Cache.Clear(); - Worker->GetGraph().Invalidate(); + Worker->Invalidate(); }; auto& holderFactory = Worker->GetGraph().GetHolderFactory(); |