This is an automated email from the ASF dual-hosted git repository. morningman pushed a change to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/incubator-doris.git
from 727f08ca5b [fix](planner) unnecessary cast will be added on children in CaseExpr sometimes (#9600) new b6489024a0 [improvement](stream-load) adjust read unit of http to optimize stream load (#9154) new 131a0ac56e [fix](broker-scan-node) Remove trailing spaces in broker_scanner. Make it consistent with hive and trino behavior. (#9190) new 733fb3a92a [Feature] CTAS support insert data (#9271) new 2cc31df3c5 [fix] UT MathFunctionTest.round_test fix (#9447) new 571608dee5 [Enhancement] improve parquet reader via arrow's prefetch and multi thread (#9472) new 8490c38906 [Bug][Vectorized] fix schema change add varchar type column default value get wrong result (#9523) new 8a375dcafb [deps] libhdfs3 build enable kerberos support (#9524) new 0e38fa4e9d [refactor](load) add tablet errors when close_wait return error (#9619) new b28b77a32f [FeConfig](Project) Project optimization is enabled by default (#9667) new e52e27ba66 [fix] NullPredicate should implement evaluate_vec (#9689) new c4c4364534 [config](checksum) Disable consistency checker by default (#9699) new 05bd5c82f9 [refactor](fe): remove unused code (#8986) new 25ee329f52 [improvement](planner) Backfill the original predicate pushdown code (#9703) The 13 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: be/CMakeLists.txt | 50 ++++- be/src/common/config.h | 3 + be/src/exec/broker_scanner.cpp | 29 ++- be/src/exec/parquet_reader.cpp | 137 ++++++++---- be/src/exec/parquet_reader.h | 23 +- be/src/http/action/stream_load.cpp | 4 +- be/src/olap/column_predicate.h | 5 +- be/src/olap/delta_writer.cpp | 21 +- be/src/olap/delta_writer.h | 6 +- be/src/olap/null_predicate.cpp | 12 + be/src/olap/null_predicate.h | 2 + be/src/olap/rowset/segment_v2/column_reader.cpp | 14 +- be/src/olap/rowset/segment_v2/column_reader.h | 2 +- be/src/runtime/fragment_mgr.cpp | 2 +- be/src/runtime/runtime_state.h | 4 + be/src/runtime/stream_load/stream_load_pipe.h | 6 +- be/src/runtime/tablets_channel.cpp | 21 +- be/src/runtime/tablets_channel.h | 6 +- be/src/vec/functions/function_binary_arithmetic.h | 30 ++- be/test/olap/delta_writer_test.cpp | 246 ++++++++++++++++++++- build.sh | 6 +- docs/en/administrator-guide/config/fe_config.md | 10 +- docs/zh-CN/administrator-guide/config/fe_config.md | 10 +- .../java/org/apache/doris/analysis/Analyzer.java | 39 +++- .../doris/analysis/CreateTableAsSelectStmt.java | 44 ++-- .../java/org/apache/doris/catalog/Catalog.java | 2 +- .../main/java/org/apache/doris/common/Config.java | 7 +- .../org/apache/doris/planner/AnalyticEvalNode.java | 3 - .../apache/doris/planner/PredicatePushDown.java | 35 ++- .../apache/doris/planner/SingleNodePlanner.java | 3 + .../main/java/org/apache/doris/qe/Coordinator.java | 3 +- .../java/org/apache/doris/qe/SessionVariable.java | 16 +- .../java/org/apache/doris/qe/StmtExecutor.java | 36 ++- .../org/apache/doris/rewrite/InferFiltersRule.java | 8 + .../apache/doris/rewrite/InferFiltersRuleTest.java | 23 +- gensrc/thrift/PaloInternalService.thrift | 3 + run-be-ut.sh | 1 + thirdparty/build-thirdparty.sh | 37 +++- thirdparty/download-thirdparty.sh | 12 +- thirdparty/patches/libevent.patch | 126 +++++++---- thirdparty/patches/libgsasl-1.8.0.patch | 24 ++ thirdparty/vars.sh | 20 +- 42 files changed, 887 insertions(+), 204 deletions(-) create mode 100644 thirdparty/patches/libgsasl-1.8.0.patch --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org