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

morningman pushed a change to branch dev-1.0.0
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git.


    from d7f8a5d  [feature](vec) Support update stmt in vec query engine (#8296)
     new cadf19a  Revert "[refactor] remove unused new_in_predicate code 
(#8263)" (#8372)
     new 26f55da  [chore] fix build with parallel parameter only (#8352)
     new 9b6de9b  [fix](vectorization)Some small fix for SegmentIter 
Vectorization  (#8267)
     new 209c5a1  [feature](vectorize)(function) support regexp&&sm4&&aes 
functions  (#8307)
     new d2b88ed  [improvement] Support show tablets stmt (#7970)

The 5 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/common/daemon.cpp                           |   2 +
 be/src/exprs/CMakeLists.txt                        |   1 +
 be/src/exprs/encryption_functions.cpp              |  21 --
 be/src/exprs/encryption_functions.h                |  21 +-
 be/src/exprs/new_in_predicate.cpp                  | 185 +++++++++++
 be/src/exprs/new_in_predicate.h                    | 348 +++++++++++++++++++++
 be/src/exprs/string_functions.cpp                  |   4 +-
 be/src/exprs/string_functions.h                    |   3 +
 be/src/olap/rowset/segment_v2/segment_iterator.cpp |   5 +-
 be/src/vec/CMakeLists.txt                          |   3 +
 .../aggregate_function_percentile_approx.cpp       |   1 -
 be/src/vec/columns/column_complex.h                |  16 +
 be/src/vec/columns/column_vector.h                 |   4 +-
 be/src/vec/functions/function_encryption.cpp       | 245 +++++++++++++++
 be/src/vec/functions/function_hex.cpp              | 183 +++++++++++
 be/src/vec/functions/function_regexp.cpp           | 216 +++++++++++++
 be/src/vec/functions/function_string.cpp           | 132 +-------
 be/src/vec/functions/function_string.h             |  21 +-
 be/src/vec/functions/math.cpp                      |  51 ---
 be/src/vec/functions/simple_function_factory.h     |   6 +
 be/test/vec/function/function_like_test.cpp        |  59 ++++
 be/test/vec/function/function_string_test.cpp      | 241 +++++++++++++-
 build.sh                                           |  13 +-
 .../Data Manipulation/SHOW TABLET.md               |  13 +-
 .../Data Manipulation/SHOW TABLETS.md              |  56 ++++
 .../Data Manipulation/SHOW TABLET.md               |  33 +-
 .../{SHOW TABLET.md => SHOW TABLETS.md}            |  46 ++-
 fe/fe-core/src/main/cup/sql_parser.cup             |   4 +-
 fe/fe-core/src/main/jflex/sql_scanner.flex         |   1 +
 gensrc/script/doris_builtins_functions.py          |  74 ++---
 30 files changed, 1690 insertions(+), 318 deletions(-)
 create mode 100644 be/src/exprs/new_in_predicate.cpp
 create mode 100644 be/src/exprs/new_in_predicate.h
 create mode 100644 be/src/vec/functions/function_encryption.cpp
 create mode 100644 be/src/vec/functions/function_hex.cpp
 create mode 100644 be/src/vec/functions/function_regexp.cpp
 create mode 100644 docs/en/sql-reference/sql-statements/Data Manipulation/SHOW 
TABLETS.md
 copy docs/zh-CN/sql-reference/sql-statements/Data Manipulation/{SHOW TABLET.md 
=> SHOW TABLETS.md} (60%)

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

Reply via email to