You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by ad...@apache.org on 2022/10/18 05:10:20 UTC

[doris] branch master updated (3f964ad5a8 -> 125def5102)

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

adonisling pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


    from 3f964ad5a8 [Regression](javaudf) add regression test for javaudf (#13266)
     add 125def5102 [enhancement](macOS M1) Support building from source on macOS (M1) (#13195)

No new revisions were added by this update.

Summary of changes:
 be/CMakeLists.txt                                  | 141 +++++++++++++-----
 be/src/agent/CMakeLists.txt                        |  13 +-
 be/src/agent/agent_server.cpp                      |   2 +-
 .../cgroups_mgr_mac.cpp}                           |  22 ++-
 be/src/env/env_posix.cpp                           |  10 ++
 be/src/exec/analytic_eval_node.cpp                 |   5 +-
 be/src/exec/arrow/parquet_reader.cpp               |   5 +-
 be/src/exec/json_scanner.cpp                       |   4 +-
 be/src/exec/orc_scanner.cpp                        |   2 +-
 be/src/exec/table_connector.cpp                    |   2 +
 be/src/exprs/table_function/explode_json_array.cpp |   4 +-
 be/src/geo/CMakeLists.txt                          |   4 +-
 be/src/gutil/port.h                                |  17 ++-
 be/src/gutil/strings/split_internal.h              |   8 +-
 be/src/gutil/sysinfo.cc                            |   8 +-
 be/src/gutil/type_traits.h                         |   2 +-
 be/src/io/fs/local_file_writer.cpp                 |  12 ++
 be/src/olap/CMakeLists.txt                         |   4 +
 be/src/olap/base_compaction.cpp                    |   2 +
 be/src/olap/data_dir.cpp                           |   7 +-
 be/src/olap/decimal12.h                            |   6 +-
 be/src/olap/file_helper.cpp                        |   6 +
 be/src/olap/file_helper.h                          |   5 +-
 be/src/olap/options.cpp                            |   2 +-
 be/src/olap/tablet.cpp                             |   7 +-
 be/src/olap/tablet_schema.cpp                      |   6 +-
 be/src/olap/types.h                                |   3 +-
 be/src/olap/uint24.h                               |   2 +-
 be/src/olap/utils.h                                |   4 +-
 be/src/runtime/client_cache.h                      |   4 +-
 be/src/runtime/load_path_mgr.cpp                   |   2 +-
 be/src/runtime/memory/jemalloc_hook.cpp            |  58 ++++++++
 be/src/runtime/row_batch.cpp                       |   3 +-
 be/src/service/doris_main.cpp                      |   3 +
 be/src/util/CMakeLists.txt                         |   6 +
 be/src/util/bit_stream_utils.h                     |   2 +-
 be/src/util/bit_stream_utils.inline.h              |   2 +-
 be/src/util/bit_util.h                             |   2 +
 be/src/util/core_local.h                           |   4 +
 be/src/util/cpu_info.cpp                           |  45 ++++--
 be/src/util/crc32c.cpp                             |   6 +-
 be/src/util/disk_info_mac.cpp                      | 163 +++++++++++++++++++++
 be/src/util/easy_json.cc                           |   7 +
 be/src/util/errno.cpp                              |   2 +
 be/src/{env/env.cpp => util/exception.cpp}         |  24 +--
 .../{common/env_config.h.in => util/exception.h}   |   6 +-
 be/src/util/lru_cache.hpp                          |   8 +-
 be/src/util/mem_info.cpp                           |  31 +++-
 be/src/util/mem_info.h                             |   3 +-
 be/src/util/network_util.cpp                       |   6 +
 be/src/util/path_trie.hpp                          |  20 ++-
 .../perf_counters_mac.cpp}                         |  10 +-
 be/src/util/proto_util.h                           |   6 +-
 be/src/util/radix_sort.h                           |   3 +
 be/src/util/runtime_profile.cpp                    |   2 +-
 be/src/util/system_metrics.cpp                     |  10 +-
 be/src/util/thread.cpp                             |  29 ++++
 be/src/util/thread.h                               |   7 +-
 .../aggregate_function_collect.h                   |   8 +-
 .../aggregate_functions/aggregate_function_count.h |   2 +-
 .../aggregate_function_distinct.h                  |   2 +-
 .../aggregate_functions/aggregate_function_uniq.h  |   2 +-
 be/src/vec/common/allocator.h                      |   2 +
 be/src/vec/common/exception.cpp                    |  10 +-
 be/src/vec/common/hash_table/fixed_hash_table.h    |   9 +-
 be/src/vec/common/hash_table/hash_table.h          |   4 +-
 be/src/vec/common/hash_table/string_hash_table.h   |   3 -
 be/src/vec/common/pod_array.h                      |   5 +-
 be/src/vec/core/block.cpp                          |   7 +-
 be/src/vec/exec/vjson_scanner.cpp                  |   4 +-
 be/src/vec/functions/array/function_array_sort.h   |   2 +-
 be/src/vec/functions/function_string.h             |  16 +-
 be/src/vec/io/io_helper.h                          |   8 +-
 be/test/testutil/test_util.cpp                     |   5 +-
 bin/start_be.sh                                    |  25 +++-
 bin/stop_be.sh                                     |   2 +-
 bin/stop_fe.sh                                     |   2 +-
 build.sh                                           |  28 +++-
 env.sh                                             |  13 +-
 fs_brokers/apache_hdfs_broker/bin/stop_broker.sh   |   2 +-
 run-be-ut.sh                                       |  17 ++-
 thirdparty/build-thirdparty.sh                     |  86 +++++++++--
 thirdparty/vars.sh                                 |  25 +++-
 83 files changed, 864 insertions(+), 214 deletions(-)
 copy be/src/{exec/schema_scanner/schema_dummy_scanner.cpp => agent/cgroups_mgr_mac.cpp} (65%)
 create mode 100644 be/src/util/disk_info_mac.cpp
 copy be/src/{env/env.cpp => util/exception.cpp} (61%)
 copy be/src/{common/env_config.h.in => util/exception.h} (88%)
 copy be/src/{runtime/row_batch_interface.hpp => util/perf_counters_mac.cpp} (84%)


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