Remove built-in jexl function in tree mode#17092
Merged
Merged
Conversation
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #17092 +/- ##
==========================================
Coverage 39.18% 39.18%
Complexity 282 282
==========================================
Files 5129 5128 -1
Lines 343253 343113 -140
Branches 43768 43758 -10
==========================================
- Hits 134493 134465 -28
+ Misses 208760 208648 -112 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Wei-hao-Li
approved these changes
Jan 28, 2026
JackieTien97
added a commit
that referenced
this pull request
Feb 12, 2026
(cherry picked from commit b40b74b)
JackieTien97
added a commit
that referenced
this pull request
Feb 24, 2026
(cherry picked from commit b40b74b)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



This pull request removes support for the JEXL user-defined table function (UDF) from the codebase. The removal includes code, configuration, and tests related to the JEXL function, as well as its dependency.
Key changes:
Removal of JEXL UDF support:
JEXLentry from theBuiltinTimeSeriesGeneratingFunctionenum, so it is no longer recognized as a built-in function (iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/udf/BuiltinTimeSeriesGeneratingFunction.java).UDTFJexlclass from the same file, cleaning up unused imports (iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/udf/BuiltinTimeSeriesGeneratingFunction.java).JEXLentry from theBuiltinTimeSeriesGeneratingFunctionEnumenum, fully removing its enumeration from the test constants (integration-test/src/main/java/org/apache/iotdb/itbase/constant/BuiltinTimeSeriesGeneratingFunctionEnum.java).Test and dependency cleanup:
testUDTFJexltest case, which exercised the JEXL UDF, from the integration tests (integration-test/src/test/java/org/apache/iotdb/db/it/udf/IoTDBUDTFBuiltinFunctionIT.java).commons-jexl3dependency from both the Mavenpom.xmland thedependencies.jsonfile, since it is no longer needed (iotdb-core/node-commons/pom.xml,dependencies.json) [1] [2].