This is an automated email from the ASF dual-hosted git repository.

jackie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new a62cb0b271 Make TransformBlockValSet::getNullBitmap return the cache. 
(#10967)
a62cb0b271 is described below

commit a62cb0b2716ad35d275db6d7705b8805746111dc
Author: Shen Yu <[email protected]>
AuthorDate: Mon Jun 26 19:11:02 2023 -0700

    Make TransformBlockValSet::getNullBitmap return the cache. (#10967)
---
 .../org/apache/pinot/core/operator/docvalsets/TransformBlockValSet.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/pinot-core/src/main/java/org/apache/pinot/core/operator/docvalsets/TransformBlockValSet.java
 
b/pinot-core/src/main/java/org/apache/pinot/core/operator/docvalsets/TransformBlockValSet.java
index 232900da80..6ae584a486 100644
--- 
a/pinot-core/src/main/java/org/apache/pinot/core/operator/docvalsets/TransformBlockValSet.java
+++ 
b/pinot-core/src/main/java/org/apache/pinot/core/operator/docvalsets/TransformBlockValSet.java
@@ -59,7 +59,7 @@ public class TransformBlockValSet implements BlockValSet {
       _nullBitmap = _transformFunction.getNullBitmap(_valueBlock);
       _nullBitmapSet = true;
     }
-    return _nullBitmap == null ? null : _nullBitmap.clone();
+    return _nullBitmap;
   }
 
   @Override


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to