This is an automated email from the ASF dual-hosted git repository. lihaopeng pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
from 55fc3726375 [fix](array-funcs)fix array funcs which ret can be nullable (#43243) add 6cfecba4607 [improve](udf) support load data with udf functions (#43029) No new revisions were added by this update. Summary of changes: .../main/java/org/apache/doris/common/Config.java | 7 ++ .../apache/doris/analysis/FunctionCallExpr.java | 7 +- .../doris/load/loadv2/LoadingTaskPlanner.java | 2 +- .../apache/doris/planner/StreamLoadPlanner.java | 2 +- .../routine_load/test_routine_load_with_udf.out | 4 + .../load_p0/stream_load/test_stream_load_udf.csv | 3 + .../stream_load/test_stream_load_with_udf.out | 6 + .../java/org/apache/doris/udf/IntLoadTest.java | 24 ++++ .../java/org/apache/doris/udf/StringLoadTest.java | 27 +++++ ...oad_with_user.csv => test_routine_load_udf.csv} | 0 .../routine_load/test_routine_load_with_udf.groovy | 126 +++++++++++++++++++++ .../stream_load/test_stream_load_with_udf.groovy | 65 +++++++++++ 12 files changed, 270 insertions(+), 3 deletions(-) create mode 100644 regression-test/data/load_p0/routine_load/test_routine_load_with_udf.out create mode 100644 regression-test/data/load_p0/stream_load/test_stream_load_udf.csv create mode 100644 regression-test/data/load_p0/stream_load/test_stream_load_with_udf.out create mode 100644 regression-test/java-udf-src/src/main/java/org/apache/doris/udf/IntLoadTest.java create mode 100644 regression-test/java-udf-src/src/main/java/org/apache/doris/udf/StringLoadTest.java copy regression-test/suites/load_p0/routine_load/data/{test_routine_load_with_user.csv => test_routine_load_udf.csv} (100%) create mode 100644 regression-test/suites/load_p0/routine_load/test_routine_load_with_udf.groovy create mode 100644 regression-test/suites/load_p0/stream_load/test_stream_load_with_udf.groovy --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org