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 8093b4b3342 [branch-2.0-pick] "[Fix](partial-update) Correct the 
alignment process when the table has sequence column and add cases #25346" 
(#25789)
     new 9ed12250f5f [fix](datetime) fix unstable str_to_date function result 
(#25707)
     new 847eb11d3ce [build](extension) Update build-extension.yml (#25721)
     new dd2cc616c17 [Fix](segment) need to rebuild col_id_to_predicates when 
true predicates encountered (#25685)
     new 10d9625a8eb [fix](rpc) Rebuild failed channel to avoid connection 
refused (#25688)
     new ccb7e3779cb [regresstion-test](jdbc catalog)Mariadb compatible test 
(#25664)
     new fe97a17025c [Fix](partial update) Fix wrong comment in .proto file 
(#25742)
     new 22962c3b15a [enhancement](stmt-exec) make CTAS use insert timeout fix 
forward timeout (#25731)
     new 4f3dc637afd [bug](function) fix regexp_extract_all can't handle empty 
str (#25717)
     new b58f1a68c7c [fix](prefetch-read) make prefetch range correct to 
accelerate S3 load and fix its speed unbalance  (#25775)
     new 48c962e7738 [Fix](exec) Fix date dict dead loop. (#25570)

The 10 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:
 .github/workflows/build-extension.yml              |   1 +
 be/src/olap/rowset/segment_v2/segment.cpp          |  12 ++
 be/src/vec/exec/format/csv/csv_reader.cpp          |   2 +-
 be/src/vec/exec/format/orc/vorc_reader.cpp         |   2 +-
 be/src/vec/exec/format/orc/vorc_reader.h           |   2 +-
 be/src/vec/exec/format/parquet/decoder.cpp         |   2 +-
 be/src/vec/exec/format/parquet/decoder.h           |   2 +-
 be/src/vec/functions/function_regexp.cpp           |   1 +
 be/src/vec/functions/function_timestamp.cpp        |  16 +-
 be/src/vec/runtime/vdatetime_value.cpp             |  26 ++--
 be/src/vec/runtime/vdatetime_value.h               |  18 ++-
 be/test/vec/function/function_string_test.cpp      |  19 ---
 be/test/vec/function/function_time_test.cpp        |  17 ---
 be/test/vec/runtime/vdatetime_value_test.cpp       | 168 +++++++++++++++++++++
 .../{mysql => mariadb}/init/01-drop-db.sql         |   0
 .../{mysql => mariadb}/init/02-create-db.sql       |   0
 .../mariadb/init/03-create-table.sql               |  76 ++++++++++
 .../docker-compose/mariadb/init/04-insert.sql      |  36 +++++
 .../oracle-11.env => mariadb/mariadb-10.env}       |   2 +-
 .../mariadb-10.yaml.tpl}                           |  22 +--
 docker/thirdparties/run-thirdparties-docker.sh     |  26 +++-
 .../org/apache/doris/analysis/DateLiteral.java     |  19 ++-
 .../apache/doris/analysis/FunctionCallExpr.java    |   6 +-
 .../expressions/functions/scalar/StrToDate.java    |   7 +-
 .../java/org/apache/doris/qe/ConnectContext.java   |   4 +-
 .../java/org/apache/doris/qe/StmtExecutor.java     |   9 +-
 .../java/org/apache/doris/rewrite/FEFunctions.java |   2 +-
 .../org/apache/doris/rpc/BackendServiceClient.java |   9 ++
 .../org/apache/doris/rpc/BackendServiceProxy.java  |  19 ++-
 gensrc/proto/descriptors.proto                     |   2 +-
 regression-test/conf/regression-conf.groovy        |   1 +
 .../jdbc/test_mariadb_jdbc_catalog.out             | 117 ++++++++++++++
 .../datetime_functions/test_date_function.out      |   4 +-
 .../test_string_function_regexp.out                |   6 +
 .../pipeline/p0/conf/regression-conf.groovy        |   2 +-
 .../jdbc/test_mariadb_jdbc_catalog.groovy          |  82 ++++++++++
 .../test_string_function_regexp.groovy             |   1 +
 37 files changed, 642 insertions(+), 98 deletions(-)
 copy docker/thirdparties/docker-compose/{mysql => mariadb}/init/01-drop-db.sql 
(100%)
 copy docker/thirdparties/docker-compose/{mysql => 
mariadb}/init/02-create-db.sql (100%)
 create mode 100644 
docker/thirdparties/docker-compose/mariadb/init/03-create-table.sql
 create mode 100644 
docker/thirdparties/docker-compose/mariadb/init/04-insert.sql
 copy docker/thirdparties/docker-compose/{oracle/oracle-11.env => 
mariadb/mariadb-10.env} (95%)
 copy docker/thirdparties/docker-compose/{mysql/mysql-5.7.yaml.tpl => 
mariadb/mariadb-10.yaml.tpl} (77%)
 create mode 100644 
regression-test/data/external_table_p0/jdbc/test_mariadb_jdbc_catalog.out
 create mode 100644 
regression-test/suites/external_table_p0/jdbc/test_mariadb_jdbc_catalog.groovy


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to