This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push:
new 5e91fc6a8f7 [Bug](runtime-filter) set inited to true on
BloomFilterFuncBase::assi… (#39674)
5e91fc6a8f7 is described below
commit 5e91fc6a8f7fdbeef6d77a11cab8c1d982063d50
Author: Pxl <[email protected]>
AuthorDate: Thu Aug 22 00:29:16 2024 +0800
[Bug](runtime-filter) set inited to true on BloomFilterFuncBase::assi…
(#39674)
…gn (#39335)
## Proposed changes
pick from #39335
---
be/src/exprs/bloom_filter_func.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/be/src/exprs/bloom_filter_func.h b/be/src/exprs/bloom_filter_func.h
index e88f692a23d..95d50642448 100644
--- a/be/src/exprs/bloom_filter_func.h
+++ b/be/src/exprs/bloom_filter_func.h
@@ -194,6 +194,7 @@ public:
}
_bloom_filter_alloced = data_size;
+ _inited = true;
return _bloom_filter->init(data, data_size);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]