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

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


    from 04a7bf0  [fix](vectorized) Agg/Unique not null column outer join 
coredump (#8461)
     new 5a10377  [improvment] show export support label like (#8202)
     new 3fd7754  [improvement](ut) add unit tests for min/max function, and 
cleaned up some unused code (#8458)
     new 47f10a5  [improvement] Update ShowExecutor.java (#8462)
     new ff42e48  [fix] Fix some mistakes for ReadWriteLock in be (#8464)
     new 5008368  [fix](dynamic-partition) fix bug that can not set 
dynamic_partition.replication_allocation property (#8471)
     new ece8785  [fix](ut) fix some UT compile or run failed cases (#8489)
     new 80f5499  [fix] min function of not null varchar column get error 
result (#8479)
     new 1071148  [fix] fix bitmap wrong result (#8478)
     new 6585cca  [feature](vectorized) support lateral view (#8448)
     new 5aa840f  [fix](partition_cache) Fix Partition Cache 
NullPointerException bug (#8454)
     new 75f5515  [improvement](vectorized) Make bloom filter predicate run 
short-circuit logic (#8484)
     new 6cc3c5f  [chore](dependency) update Croaring for good performance 
(#8492)
     new 0d099f7  [fix](vectorized) fix core dump on get_json_string and add 
some ut (#8496)

The 13 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/CMakeLists.txt                                  |   6 +-
 be/src/exec/exec_node.cpp                          |  13 +-
 be/src/exec/table_function_node.cpp                |  69 +++--
 be/src/exec/table_function_node.h                  |  10 +-
 be/src/exprs/anyval_util.h                         |   1 +
 be/src/exprs/bitmap_function.cpp                   |  15 +-
 be/src/exprs/table_function/explode_split.cpp      |  18 +-
 be/src/exprs/table_function/explode_split.h        |   5 +-
 be/src/exprs/table_function/table_function.h       |  46 ++-
 .../table_function/table_function_factory.cpp      |  57 ++--
 .../exprs/table_function/table_function_factory.h  |  12 +-
 be/src/olap/bloom_filter_predicate.h               |   2 +
 be/src/olap/column_predicate.h                     |   2 +
 be/src/olap/rowset/segment_v2/segment_iterator.cpp |   4 +-
 be/src/olap/tablet.cpp                             |   4 +-
 be/src/olap/tablet_manager.cpp                     |  20 +-
 be/src/olap/tablet_schema.h                        |   2 +-
 be/src/util/bitmap_value.h                         |  12 +-
 be/src/vec/CMakeLists.txt                          |   2 +
 .../aggregate_function_min_max.h                   |  87 ------
 be/src/vec/columns/column_complex.h                |   3 +-
 be/src/vec/exec/vrepeat_node.cpp                   |  36 +--
 be/src/vec/exec/vrepeat_node.h                     |   2 +-
 be/src/vec/exec/vtable_function_node.cpp           | 224 ++++++++++++++
 .../{vodbc_scan_node.h => vtable_function_node.h}  |  31 +-
 be/src/vec/exprs/table_function/vexplode_split.cpp |  99 ++++++
 .../exprs/table_function/vexplode_split.h}         |  28 +-
 be/src/vec/exprs/vexpr.h                           |   2 +
 be/src/vec/functions/function_fake.cpp             |   1 +
 be/src/vec/functions/function_fake.h               |   8 +
 be/src/vec/functions/function_json.cpp             |   7 +-
 be/test/exprs/array_functions_test.cpp             |   2 +-
 be/test/http/message_body_sink_test.cpp            |   3 +-
 be/test/olap/bit_field_test.cpp                    |   4 +-
 be/test/olap/column_reader_test.cpp                |   4 +-
 be/test/olap/delete_handler_test.cpp               |  12 +-
 be/test/olap/delta_writer_test.cpp                 |  15 +-
 be/test/olap/options_test.cpp                      |   8 +-
 be/test/olap/rowset/alpha_rowset_test.cpp          |   2 +-
 be/test/olap/rowset/beta_rowset_test.cpp           |   3 +-
 be/test/olap/rowset/rowset_converter_test.cpp      |   2 +-
 be/test/olap/run_length_byte_test.cpp              |   4 +-
 be/test/olap/run_length_integer_test.cpp           |   8 +-
 be/test/olap/schema_change_test.cpp                |   7 +-
 be/test/runtime/memory_scratch_sink_test.cpp       |   8 +-
 be/test/runtime/user_function_cache_test.cpp       |   9 +-
 be/test/util/arrow/arrow_row_batch_test.cpp        |   1 +
 be/test/util/arrow/arrow_work_flow_test.cpp        |   8 +-
 be/test/vec/aggregate_functions/CMakeLists.txt     |   3 +-
 .../{agg_test.cpp => agg_min_max_test.cpp}         |  79 ++---
 be/test/vec/function/CMakeLists.txt                |   1 +
 be/test/vec/function/function_json_test.cpp        |  74 +++++
 build.sh                                           |   8 +-
 .../Data Manipulation/SHOW EXPORT.md               |   9 +-
 .../Data Manipulation/SHOW EXPORT.md               |   9 +-
 .../org/apache/doris/analysis/ShowExportStmt.java  | 112 +++----
 .../org/apache/doris/catalog/TableProperty.java    |  12 +
 .../apache/doris/common/proc/ExportProcNode.java   |   2 +-
 .../main/java/org/apache/doris/load/ExportMgr.java |  22 +-
 .../java/org/apache/doris/qe/ShowExecutor.java     |   8 +-
 .../org/apache/doris/qe/cache/PartitionRange.java  |  11 +-
 .../apache/doris/analysis/ShowExportStmtTest.java  |  89 ++++++
 .../apache/doris/load/loadv2/ExportMgrTest.java    |  99 ++++++
 .../org/apache/doris/qe/PartitionCacheTest.java    | 339 +++++++++++++--------
 run-be-ut.sh                                       |   5 +
 thirdparty/CHANGELOG.md                            |   3 +
 thirdparty/build-thirdparty.sh                     |   2 +-
 thirdparty/patches/aws-c-cal-0.4.5.patch           |  11 -
 thirdparty/vars.sh                                 |   8 +-
 69 files changed, 1287 insertions(+), 547 deletions(-)
 create mode 100644 be/src/vec/exec/vtable_function_node.cpp
 copy be/src/vec/exec/{vodbc_scan_node.h => vtable_function_node.h} (54%)
 create mode 100644 be/src/vec/exprs/table_function/vexplode_split.cpp
 copy be/src/{exprs/table_function/table_function_factory.h => 
vec/exprs/table_function/vexplode_split.h} (55%)
 copy be/test/vec/aggregate_functions/{agg_test.cpp => agg_min_max_test.cpp} 
(55%)
 create mode 100644 be/test/vec/function/function_json_test.cpp
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/analysis/ShowExportStmtTest.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/load/loadv2/ExportMgrTest.java
 delete mode 100644 thirdparty/patches/aws-c-cal-0.4.5.patch

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

Reply via email to