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 d2b88ed  [improvement] Support show tablets stmt (#7970)
     new dc1aaa9  [refactor] Remove mysql-connector and replace org.json with 
com.googlecode.json-simple (#8319)
     new a8c183d  [improvement][fix](insert)(replay) support SHOW LAST INSERT 
stmt and fix json replay bug (#8355)
     new 178a943  [fix](broker-load) fix bug that a cancelled job's state is 
LOADING (#8363)
     new 41c4c46  [fix] fix core dump on minmax_filter with decimal type (#8381)
     new c460367  [feature][vectorized] support replace() (#8384)
     new 40f34c3  [fix](vectorized) Fix the datetime type read error and 
is_same set error in reader (#8386)
     new 853313b  [fix](vectorized) fix float to string inaccurate (#8392)
     new 770615e  [fix] fix bug or unused import after cherry-pick

The 8 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/exprs/minmax_predicate.h                    | 30 ++++++---
 be/src/exprs/runtime_filter.cpp                    | 34 ++++------
 be/src/olap/row_block2.cpp                         |  3 +-
 be/src/vec/common/string_ref.h                     | 27 +++++---
 be/src/vec/data_types/data_type_number_base.cpp    | 14 ++++-
 be/src/vec/functions/function_string.cpp           |  1 +
 be/src/vec/functions/function_string.h             | 58 +++++++++++++++++
 be/src/vec/olap/vcollect_iterator.cpp              |  9 ++-
 be/test/exprs/runtime_filter_test.cpp              | 72 +++++++++++-----------
 be/test/vec/function/function_string_test.cpp      | 17 +++++
 docs/.vuepress/sidebar/en.js                       |  1 +
 docs/.vuepress/sidebar/zh-CN.js                    |  1 +
 .../load-data/insert-into-manual.md                | 22 +++++++
 .../Data Manipulation/SHOW-LAST-INSERT.md          | 67 ++++++++++++++++++++
 .../load-data/insert-into-manual.md                | 23 ++++++-
 .../Data Manipulation/SHOW-LAST-INSERT.md          | 68 ++++++++++++++++++++
 fe/fe-core/pom.xml                                 | 10 +--
 fe/fe-core/src/main/cup/sql_parser.cup             |  5 ++
 ...wOpenTableStmt.java => ShowLastInsertStmt.java} | 28 +++++++--
 .../java/org/apache/doris/backup/Repository.java   |  5 +-
 .../java/org/apache/doris/catalog/Catalog.java     | 15 +++--
 .../apache/doris/common/proc/TransDbProcDir.java   |  1 +
 .../doris/deploy/impl/AmbariDeployManager.java     | 19 +++---
 .../external/elasticsearch/EsShardPartitions.java  | 33 +++++-----
 .../external/elasticsearch/EsShardRouting.java     | 14 ++---
 .../doris/external/elasticsearch/EsUtil.java       | 10 +--
 .../doris/external/elasticsearch/MappingPhase.java | 50 +++++++--------
 .../doris/http/rest/StorageTypeCheckAction.java    |  2 +-
 .../doris/http/rest/TableQueryPlanAction.java      | 13 ++--
 .../doris/httpv2/interceptor/AuthInterceptor.java  |  8 ---
 .../doris/httpv2/rest/TableQueryPlanAction.java    | 19 +++---
 .../org/apache/doris/journal/bdbje/BDBTool.java    | 10 ++-
 .../main/java/org/apache/doris/load/LoadJob.java   |  7 ++-
 .../org/apache/doris/load/loadv2/JobState.java     |  6 +-
 .../java/org/apache/doris/load/loadv2/LoadJob.java | 34 ++++++----
 .../apache/doris/load/loadv2/LoadLoadingTask.java  |  7 ++-
 .../apache/doris/persist/GlobalVarPersistInfo.java |  2 +-
 .../java/org/apache/doris/qe/ConnectContext.java   | 17 +++++
 .../java/org/apache/doris/qe/InsertResult.java     | 66 ++++++++++++++++++++
 .../java/org/apache/doris/qe/SessionVariable.java  | 22 ++++---
 .../java/org/apache/doris/qe/ShowExecutor.java     | 16 +++++
 .../java/org/apache/doris/qe/StmtExecutor.java     |  7 +++
 .../main/java/org/apache/doris/qe/VariableMgr.java | 15 ++---
 .../doris/transaction/GlobalTransactionMgr.java    |  7 +++
 .../doris/external/elasticsearch/EsUtilTest.java   | 23 +++----
 .../doris/http/TableQueryPlanActionTest.java       | 61 +++++++++---------
 .../apache/doris/http/TableRowCountActionTest.java | 14 +++--
 .../apache/doris/http/TableSchemaActionTest.java   | 17 ++---
 fe/pom.xml                                         | 13 +---
 49 files changed, 719 insertions(+), 304 deletions(-)
 create mode 100644 docs/en/sql-reference/sql-statements/Data 
Manipulation/SHOW-LAST-INSERT.md
 create mode 100644 docs/zh-CN/sql-reference/sql-statements/Data 
Manipulation/SHOW-LAST-INSERT.md
 copy 
fe/fe-core/src/main/java/org/apache/doris/analysis/{ShowOpenTableStmt.java => 
ShowLastInsertStmt.java} (59%)
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/qe/InsertResult.java

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

Reply via email to