This is an automated email from the ASF dual-hosted git repository.

jiafengzheng pushed a change to branch rest-api-plan-tablename-case
in repository https://gitbox.apache.org/repos/asf/doris.git


 discard 7bd61a86aa0 3
 discard 3a6368d87f9 2
 discard d341773a7fc 1
 discard bbe2c6d37ed [fix](fe rest api)api gets execution plan, table name case 
problem
     add f3b15d859b8 [Refactor](Export) delete useless code of Export (#24953)
     add d517d7ab699 [Fix](point query) Not allow subquery for point query 
optimization (#25085)
     add 934e9d5617d [typo](docs) Add example for create sql block rule (#24754)
     add 541f48a754b [feature](es-catalog) add `include_hidden_index`in order 
to get the hidden index. (#24826)
     add 3a450014475 [fix](Nerids) fix error when the view has lambda functions 
(#25067)
     add c3d9f42a3e5 [fix](scanner) fix load cannot end when set exec_mem_limit 
(#25090)
     add b91335dbb8a [refactor](columndecimal) is_decimal_v2 member is useless 
because column decimal could detect by itself (#25110)
     add 7e9ffad9336 [fix](ES catalog)Doris cannot parse ES date field without 
time zone (#24864)
     add 9d8b993c51b [fix](fs) fix remove error log failed (#25108)
     add 5c020be4d24 [Bug](join) corner case cause the mark join + null aware 
left join core dump in regression test in pipeline query engine (#25087)
     add 451e2991515 [Opt](performance) Optimize timeround with minute / second 
 (#25073)
     add fe167da2ffe [fix](hudi) hbase-2.5.5 conflict with hudi (#25136)
     add 9e31cb26bbc [fix](parse_url) fix `parse_url` is not working in some 
case to extract the HOST  (#25040)
     add 6a449f22fb5 [fix](fe rest api)api gets execution plan, table name case 
problem
     add 3284659d2bd 1
     add 979b605137b 2
     add 27e7ee85b7a 3

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (7bd61a86aa0)
            \
             N -- N -- N   refs/heads/rest-api-plan-tablename-case (27e7ee85b7a)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 be/src/exec/es/es_scroll_parser.cpp                |  73 ++++--
 be/src/exec/es/es_scroll_parser.h                  |   4 +-
 be/src/olap/rowset/segment_v2/segment_iterator.cpp |   2 -
 be/src/pipeline/exec/operator.h                    |   7 +-
 be/src/pipeline/pipeline_task.cpp                  |   7 +-
 be/src/runtime/load_path_mgr.cpp                   |   2 +-
 be/src/util/url_parser.cpp                         |   5 +
 be/src/vec/columns/column.h                        |   3 -
 be/src/vec/columns/column_decimal.cpp              |   5 +-
 be/src/vec/columns/column_nullable.h               |   2 -
 be/src/vec/data_types/data_type_decimal.cpp        |   1 -
 be/src/vec/exec/join/vhash_join_node.cpp           |  70 +++--
 be/src/vec/exec/join/vhash_join_node.h             |   4 +-
 be/src/vec/exec/join/vjoin_node_base.h             |   4 +-
 be/src/vec/exec/scan/new_es_scanner.cpp            |   2 +-
 be/src/vec/exec/scan/scanner_context.cpp           |   3 +-
 be/src/vec/exec/scan/vscan_node.cpp                |   3 -
 .../vec/functions/function_datetime_floor_ceil.cpp |  49 +++-
 be/test/vec/columns/column_decimal_test.cpp        |  52 ----
 be/test/vec/function/function_string_test.cpp      |   4 +
 .../elasticsearch/scripts/data/data1.json          |   1 +
 .../elasticsearch/scripts/data/data1_es6.json      |   1 +
 .../elasticsearch/scripts/data/data2.json          |   1 +
 .../elasticsearch/scripts/data/data2_es6.json      |   1 +
 .../elasticsearch/scripts/data/data3.json          |   1 +
 .../elasticsearch/scripts/data/data3_es6.json      |   1 +
 .../elasticsearch/scripts/data/data4.json          |   1 +
 .../elasticsearch/scripts/es_init.sh               |   5 +
 .../index/{es6_test1.json => es6_hide.json}        |   3 -
 .../elasticsearch/scripts/index/es6_test1.json     |   3 +
 .../elasticsearch/scripts/index/es6_test2.json     |   3 +
 .../index/{es7_test1.json => es7_hide.json}        |   0
 .../elasticsearch/scripts/index/es7_test1.json     |   3 +
 .../elasticsearch/scripts/index/es7_test2.json     |   3 +
 docs/en/docs/lakehouse/multi-catalog/es.md         |  23 +-
 .../Create/CREATE-SQL-BLOCK-RULE.md                |  40 +++
 docs/zh-CN/docs/lakehouse/multi-catalog/es.md      |  23 +-
 .../Create/CREATE-SQL-BLOCK-RULE.md                |  50 +++-
 .../main/java/org/apache/doris/common/Config.java  |  12 -
 .../java/org/apache/doris/analysis/ExportStmt.java |   3 -
 .../doris/analysis/LambdaFunctionCallExpr.java     |  17 +-
 .../java/org/apache/doris/analysis/SelectStmt.java |   4 +
 .../main/java/org/apache/doris/catalog/Env.java    |   2 -
 .../java/org/apache/doris/catalog/EsResource.java  |   6 +
 .../java/org/apache/doris/catalog/EsTable.java     |  14 +-
 .../doris/catalog/external/EsExternalTable.java    |   1 +
 .../apache/doris/datasource/EsExternalCatalog.java |   7 +-
 .../doris/external/elasticsearch/EsRestClient.java |  13 +-
 .../main/java/org/apache/doris/load/ExportJob.java | 172 -------------
 .../main/java/org/apache/doris/load/ExportMgr.java |  99 +-------
 .../expressions/functions/ComputeSignature.java    |   1 +
 .../expressions/functions/scalar/ArrayCount.java   |   7 +-
 .../expressions/functions/scalar/ArrayExists.java  |   7 +-
 .../expressions/functions/scalar/ArrayFilter.java  |   4 +
 .../functions/scalar/ArrayFirstIndex.java          |   7 +-
 .../functions/scalar/ArrayLastIndex.java           |   7 +-
 .../expressions/functions/scalar/ArraySortBy.java  |  12 +-
 .../trees/plans/commands/ExportCommand.java        |   3 -
 .../doris/nereids/util/TypeCoercionUtils.java      |   5 +-
 .../java/org/apache/doris/qe/StmtExecutor.java     |   1 -
 .../org/apache/doris/task/ExportExportingTask.java | 281 ---------------------
 .../doris/analysis/CancelExportStmtTest.java       |  19 +-
 .../org/apache/doris/qe/SessionVariablesTest.java  |  74 ------
 fe/pom.xml                                         |  16 --
 .../data/external_table_p0/es/test_es_query.out    | 170 +++++++++----
 .../es/test_es_query_no_http_url.out               |   6 +-
 .../nereids_function_p0/scalar_function/Array.out  | 135 ++++++++++
 .../external_table_p0/es/test_es_query.groovy      | 148 ++++++++---
 .../stream_load/test_stream_load_properties.groovy |   2 +-
 .../scalar_function/Array.groovy                   |  36 +++
 .../test_update.groovy}                            |  46 ++--
 71 files changed, 800 insertions(+), 1002 deletions(-)
 delete mode 100644 be/test/vec/columns/column_decimal_test.cpp
 copy 
docker/thirdparties/docker-compose/elasticsearch/scripts/index/{es6_test1.json 
=> es6_hide.json} (95%)
 mode change 100755 => 100644
 copy 
docker/thirdparties/docker-compose/elasticsearch/scripts/index/{es7_test1.json 
=> es7_hide.json} (100%)
 mode change 100755 => 100644
 delete mode 100644 
fe/fe-core/src/main/java/org/apache/doris/task/ExportExportingTask.java
 copy regression-test/suites/{datatype_p0/decimalv3/test_show_decimalv3.groovy 
=> point_query_p0/test_update.groovy} (52%)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to