This is an automated email from the ASF dual-hosted git repository. kxiao pushed a change to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
from 37b062fd65 [refactor](nereids) forbid unknown stats for branch 2.0 #24061 (#24323) new 6c606fdcb0 (improvement)[inverted-index] add and optimize checks when IO error occurs. (#24167) new 1842c7db9c [fix](forward master op)Set default catalog and db only when they exist in master FE while executing forwarded stmt (#24212) new 5bde074aeb [fix](publish) publish go ahead even if quorum is not met (#23806) new 582c51851d [Improvement](inverted index) return status error when create inverted index reader throwing error (#24223) new d09a9a3568 [test](regression) add routine load cases (#24194) new a14fe09ff8 [fix](agg) Add the unimplemented functions in AggregateFunctionOldSum. (#24211) new 368276d7f0 [FIX](regresstest) fix local tvf for doris cluter mode which here may not has fe log in #24187 new ac66f94286 [fix](query-cache) fix query cache with empty set (#24147) new 1202f54e53 [Regresstion](external)open case test_doris_jdbc_catalog (#24093) new ae7cf0bccf [fix](Nereids) default partition be prunned by mistake (#24186) new d37c92b947 [fix](csv_reader)fix bug that Read garbled files caused be crash. (#24164) new 368b82ee95 [enhancement](delete-handler) split Deletehandler#commitJob and add preconditions to intercept NPE(#24086) new ecc635d1cd [fix](planner)allow infer predicate for external table (#24227) new 4741648022 [fix](jdbc catalog) Ensure Thread Safety by Refactoring isDoris&convertDateToNull Static Variable in JdbcMySQLClient (#24253) The 14 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/src/exec/text_converter.cpp | 3 +- be/src/olap/rowset/segment_v2/column_reader.cpp | 29 +- .../inverted_index_compound_directory.cpp | 84 ++--- .../segment_v2/inverted_index_compound_reader.cpp | 6 + .../rowset/segment_v2/inverted_index_writer.cpp | 3 + .../aggregate_function_sum_old.h | 16 + be/src/vec/aggregate_functions/helpers.h | 54 +++ .../vec/data_types/serde/data_type_array_serde.cpp | 9 +- .../vec/data_types/serde/data_type_map_serde.cpp | 11 +- .../data_types/serde/data_type_struct_serde.cpp | 5 +- .../main/java/org/apache/doris/common/Config.java | 7 + .../java/org/apache/doris/catalog/Replica.java | 26 ++ .../datasource/jdbc/client/JdbcMySQLClient.java | 4 +- .../java/org/apache/doris/load/DeleteHandler.java | 10 +- .../rules/HiveDefaultPartitionEvaluator.java | 5 + .../rules/OneListPartitionEvaluator.java | 5 + .../expression/rules/OnePartitionEvaluator.java | 10 + .../rules/OneRangePartitionEvaluator.java | 5 + .../rules/expression/rules/PartitionPruner.java | 3 +- .../rules/UnknownPartitionEvaluator.java | 5 + .../rules/rewrite/PruneOlapScanPartition.java | 1 + .../org/apache/doris/planner/MysqlScanNode.java | 4 + .../apache/doris/planner/SingleNodePlanner.java | 3 +- .../doris/planner/external/jdbc/JdbcScanNode.java | 4 + .../doris/planner/external/odbc/OdbcScanNode.java | 4 + .../java/org/apache/doris/qe/ConnectProcessor.java | 16 +- .../java/org/apache/doris/qe/StmtExecutor.java | 10 +- .../org/apache/doris/qe/cache/RowBatchBuilder.java | 15 +- .../doris/transaction/DatabaseTransactionMgr.java | 208 ++++++----- .../apache/doris/transaction/TransactionState.java | 14 + .../rules/rewrite/PruneOlapScanPartitionTest.java | 22 ++ regression-test/conf/regression-conf.groovy | 6 + .../hive/test_hive_query_cache.out | 404 +++++++++++++++++++++ .../jdbc/test_mysql_jdbc_catalog_nereids.out | 23 -- .../hive/test_text_garbled_file.out | Bin 0 -> 296830 bytes .../test_push_conjunct_external_table.groovy | 67 ++++ ...e_other.groovy => test_hive_query_cache.groovy} | 86 +++-- .../jdbc/test_mysql_jdbc_catalog_nereids.groovy | 5 +- .../external_table_p0/tvf/test_local_tvf.groovy | 86 ++--- ..._array.groovy => test_text_garbled_file.groovy} | 18 +- .../load_p0/routine_load/test_routine_load.groovy | 44 ++- .../load_p0/stream_load/test_hdfs_json_load.groovy | 2 +- 42 files changed, 1064 insertions(+), 278 deletions(-) create mode 100644 regression-test/data/external_table_p0/hive/test_hive_query_cache.out create mode 100644 regression-test/data/external_table_p2/hive/test_text_garbled_file.out create mode 100644 regression-test/suites/correctness_p0/test_push_conjunct_external_table.groovy copy regression-test/suites/external_table_p0/hive/{test_hive_other.groovy => test_hive_query_cache.groovy} (61%) copy regression-test/suites/external_table_p2/hive/{test_hive_to_array.groovy => test_text_garbled_file.groovy} (82%) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org