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 725811e1d1 [Improvement](pipeline) Terminate early for short-circuit join (#23378) (#23396) new 45ab54b30e [fix](planner & nereids) convert to double if div decimal overflow (#23272) new 7a681b7624 [feature](jdbc catalog) support doris jdbc catalog array type (#23056) new 3f66884079 [fix](Nereids) use Stopwatch to do timeout checker (#23383) The 3 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: docs/en/docs/lakehouse/multi-catalog/jdbc.md | 18 +- docs/zh-CN/docs/lakehouse/multi-catalog/jdbc.md | 18 +- .../org/apache/doris/analysis/ArithmeticExpr.java | 5 +- .../datasource/jdbc/client/JdbcMySQLClient.java | 181 +- .../org/apache/doris/nereids/NereidsPlanner.java | 10 +- .../org/apache/doris/nereids/StatementContext.java | 7 + .../nereids/jobs/scheduler/SimpleJobScheduler.java | 5 +- .../doris/nereids/rules/analysis/AnalyzeCTE.java | 3 +- .../doris/nereids/trees/expressions/Divide.java | 6 +- regression-test/conf/regression-conf.groovy | 1 + .../correctness_p0/test_div_decimal_overflow.out | 7 + .../jdbc/test_doris_jdbc_catalog.out | 12 + .../inverted_index_p1/tpcds_sf1_index/sql/q02.out | 2548 +++++----- .../inverted_index_p1/tpcds_sf1_index/sql/q12.out | 200 +- .../inverted_index_p1/tpcds_sf1_index/sql/q20.out | 200 +- .../inverted_index_p1/tpcds_sf1_index/sql/q31.out | 102 +- .../inverted_index_p1/tpcds_sf1_index/sql/q36.out | 200 +- .../tpcds_sf1_index/sql/q39_1.out | 88 +- .../tpcds_sf1_index/sql/q39_2.out | 6 +- .../inverted_index_p1/tpcds_sf1_index/sql/q59.out | 200 +- .../inverted_index_p1/tpcds_sf1_index/sql/q66.out | 8 +- .../inverted_index_p1/tpcds_sf1_index/sql/q98.out | 5018 ++++++++++---------- .../nereids_tpcds_shape_sf100_p0/shape/query11.out | 2 +- .../nereids_tpcds_shape_sf100_p0/shape/query31.out | 4 +- .../nereids_tpcds_shape_sf100_p0/shape/query4.out | 4 +- regression-test/data/nereids_tpch_p0/tpch/q8.out | 8 +- regression-test/data/tpcds_sf1_p1/sql/q02.out | 2548 +++++----- regression-test/data/tpcds_sf1_p1/sql/q12.out | 200 +- regression-test/data/tpcds_sf1_p1/sql/q20.out | 200 +- regression-test/data/tpcds_sf1_p1/sql/q31.out | 102 +- regression-test/data/tpcds_sf1_p1/sql/q36.out | 200 +- regression-test/data/tpcds_sf1_p1/sql/q39_1.out | 106 +- regression-test/data/tpcds_sf1_p1/sql/q39_2.out | 6 +- regression-test/data/tpcds_sf1_p1/sql/q58.out | 6 +- regression-test/data/tpcds_sf1_p1/sql/q59.out | 200 +- regression-test/data/tpcds_sf1_p1/sql/q66.out | 8 +- regression-test/data/tpcds_sf1_p1/sql/q98.out | 5018 ++++++++++---------- .../data/tpcds_sf1_unique_p1/sql/q02.out | 2548 +++++----- .../data/tpcds_sf1_unique_p1/sql/q12.out | 200 +- .../data/tpcds_sf1_unique_p1/sql/q20.out | 200 +- .../data/tpcds_sf1_unique_p1/sql/q31.out | 102 +- .../data/tpcds_sf1_unique_p1/sql/q36.out | 200 +- .../data/tpcds_sf1_unique_p1/sql/q39_1.out | 62 +- .../data/tpcds_sf1_unique_p1/sql/q39_2.out | 6 +- .../data/tpcds_sf1_unique_p1/sql/q58.out | 6 +- .../data/tpcds_sf1_unique_p1/sql/q59.out | 200 +- .../data/tpcds_sf1_unique_p1/sql/q66.out | 8 +- .../data/tpcds_sf1_unique_p1/sql/q98.out | 5018 ++++++++++---------- regression-test/data/tpch_sf0.1_p1/sql/q08.out | 4 +- regression-test/data/tpch_sf0.1_p1/sql/q14.out | 2 +- regression-test/data/tpch_sf0.1_p1/sql/q17.out | 2 +- .../data/tpch_sf0.1_unique_p1/sql/q08.out | 4 +- .../data/tpch_sf0.1_unique_p1/sql/q14.out | 2 +- .../data/tpch_sf0.1_unique_p1/sql/q17.out | 2 +- .../data/tpch_unique_sql_zstd_p0/sql/q08.out | 4 +- .../test_div_decimal_overflow.groovy} | 38 +- .../jdbc/test_doris_jdbc_catalog.groovy | 124 +- 57 files changed, 13162 insertions(+), 13025 deletions(-) create mode 100644 regression-test/data/correctness_p0/test_div_decimal_overflow.out copy regression-test/suites/{query_p0/limit/test_map_select_with_limit.groovy => correctness_p0/test_div_decimal_overflow.groovy} (55%) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org