This is an automated email from the ASF dual-hosted git repository.
xiangfu 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 adc3d79e81 Fix JsonExtractIndex with null handling enabled (#15616)
adc3d79e81 is described below
commit adc3d79e81844ed2cc6ad18c6d9f26e92c390c16
Author: Yash Mayya <[email protected]>
AuthorDate: Sun Apr 27 16:29:43 2025 +0100
Fix JsonExtractIndex with null handling enabled (#15616)
---
.../operator/transform/function/JsonExtractIndexTransformFunction.java | 1 +
1 file changed, 1 insertion(+)
diff --git
a/pinot-core/src/main/java/org/apache/pinot/core/operator/transform/function/JsonExtractIndexTransformFunction.java
b/pinot-core/src/main/java/org/apache/pinot/core/operator/transform/function/JsonExtractIndexTransformFunction.java
index 2f20b8d3f0..97b34e05e2 100644
---
a/pinot-core/src/main/java/org/apache/pinot/core/operator/transform/function/JsonExtractIndexTransformFunction.java
+++
b/pinot-core/src/main/java/org/apache/pinot/core/operator/transform/function/JsonExtractIndexTransformFunction.java
@@ -61,6 +61,7 @@ public class JsonExtractIndexTransformFunction extends
BaseTransformFunction {
@Override
public void init(List<TransformFunction> arguments, Map<String,
ColumnContext> columnContextMap) {
+ super.init(arguments, columnContextMap);
// Check that there are exactly 3 or 4 or 5 arguments
if (arguments.size() < 3 || arguments.size() > 5) {
throw new IllegalArgumentException(
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]