Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature Branch: merge master to planner_refactory #5426

Merged
merged 26 commits into from
Jul 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
79c3936
clear obsolete v2 data for tables that totally transform to ps v3 (#5…
lidezhu Jul 18, 2022
5d680c4
Enhance executor join tests (#5305)
Willendless Jul 18, 2022
75dbc1c
change some default config of ps v3 (#5398)
lidezhu Jul 19, 2022
21dea59
Update tipb: add keep_order field in TableScan (#5400)
JinheLin Jul 19, 2022
e737618
Support pre_exec in Proxy (#5386)
CalvinNeo Jul 19, 2022
5792db6
refine log in creating set for join build (#5404)
windtalker Jul 19, 2022
6560ada
Fix async sender nullptr bug (#5407)
yibin87 Jul 19, 2022
c0f7cac
Update schema version in set tiflash mode (#5402)
hongyunyan Jul 19, 2022
29330a2
Test aggregation functions (#5364)
xzhangxian1008 Jul 19, 2022
079d3c9
DAGContext: remove useless explicitly call to tunnel_set's default ct…
fuzhe1989 Jul 19, 2022
4abef77
Fix extract fullstack test (#5420)
zanmato1984 Jul 20, 2022
9ccfc4b
Yield CPU for concurrent flush and concurrent mergeDelta (#5410)
breezewish Jul 20, 2022
cecbe66
fix the incorrect execution time of join in explain analyze (#5411)
SeaRise Jul 20, 2022
1b81525
remove tcmalloc (#5422)
lidezhu Jul 20, 2022
764bd3c
fix read from ColumnFileBigReader (#5413)
lidezhu Jul 20, 2022
80cc15d
update proxy to raftstore-proxy-6.2 (#5428)
CalvinNeo Jul 20, 2022
f99b74c
*: fix incorrect results about string cmp with collation (#5429)
solotzg Jul 20, 2022
0cb0172
Revert "Fix extract fullstack test (#5420)" (#5427)
zanmato1984 Jul 21, 2022
794bfe8
*: fix incorrect results when handling `like` with `escape` (#5431)
solotzg Jul 21, 2022
15478d7
Fix test framework's groupby expression support (#5419)
Willendless Jul 21, 2022
71a298a
Read ThreadPool and Data Sharing of DeltaTree (#5377)
JinheLin Jul 21, 2022
7b28075
fix a panic issue in parallel agg when exception is thrown (#5433)
gengliqi Jul 21, 2022
7d14a1b
Fix proxy build on non-llvm env (#5436)
zanmato1984 Jul 21, 2022
c483f1b
change cpu feature behavior for M1 (#5394)
SchrodingerZhu Jul 21, 2022
d61c1df
Optimize string sort for default collation `UTF8MB4_BIN` (#5375)
solotzg Jul 21, 2022
467fb68
merge master to planner_refactory
SeaRise Jul 21, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,6 @@ option (ENABLE_UNWIND "Enable libunwind (better stacktraces)" ON)
include (libs/libdaemon/cmake/find_unwind.cmake)

# Need to process before "contrib" dir:
include (libs/libcommon/cmake/find_gperftools.cmake)
include (libs/libcommon/cmake/find_jemalloc.cmake)
include (libs/libcommon/cmake/find_mimalloc.cmake)
include (libs/libcommon/cmake/find_cctz.cmake)
Expand Down
5 changes: 0 additions & 5 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,6 @@ Revision: 21d37dbaa45742c0bd23cc1e5a70b52cbc27f809
Address: https://github.com/ClickHouse/ClickHouse/tree/b13313eecca9455f4fdc923f597fe863df409742/contrib/libsparsehash
License: https://github.com/ClickHouse/ClickHouse/blob/b13313eecca9455f4fdc923f597fe863df409742/contrib/libsparsehash/COPYING
--------------------------------------
tcmalloc
Revision: dde32f8bbc95312379f9f5a651799815bb6327c5
Address: https://github.com/ClickHouse/ClickHouse/tree/b13313eecca9455f4fdc923f597fe863df409742/contrib/libtcmalloc
License: https://github.com/ClickHouse/ClickHouse/blob/b13313eecca9455f4fdc923f597fe863df409742/contrib/libtcmalloc/COPYING
--------------------------------------
libunwind
Revision: 19a2c01b1e8ac20871ea09d20f596d425ba53aed
Address: https://github.com/libunwind/libunwind
Expand Down
75 changes: 0 additions & 75 deletions cmake/Modules/FindGperftools.cmake

This file was deleted.

9 changes: 3 additions & 6 deletions contrib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,6 @@ if (USE_INTERNAL_TIFLASH_PROXY)
add_subdirectory (tiflash-proxy-cmake)
endif ()

# TODO: remove tcmalloc
if (ENABLE_TCMALLOC AND USE_INTERNAL_GPERFTOOLS_LIBRARY)
add_subdirectory (libtcmalloc)
endif ()

if (ENABLE_JEMALLOC AND USE_INTERNAL_JEMALLOC_LIBRARY)
add_subdirectory (jemalloc-cmake)
endif ()
Expand Down Expand Up @@ -164,7 +159,9 @@ SET (BENCHMARK_ENABLE_GTEST_TESTS OFF CACHE BOOL "Disable google-benchmark testi
add_subdirectory(benchmark)

set (BUILD_TESTING OFF CACHE BOOL "Disable cpu-features testing" FORCE)
add_subdirectory(cpu_features)
if ((NOT APPLE) AND (NOT ARCH_AARCH64))
add_subdirectory(cpu_features)
endif()

if (ARCH_AARCH64 AND ARCH_LINUX)
add_subdirectory(arm-optimized-routines-cmake)
Expand Down
2 changes: 0 additions & 2 deletions contrib/libtcmalloc/AUTHORS

This file was deleted.

81 changes: 0 additions & 81 deletions contrib/libtcmalloc/CMakeLists.txt

This file was deleted.

28 changes: 0 additions & 28 deletions contrib/libtcmalloc/COPYING

This file was deleted.

8 changes: 0 additions & 8 deletions contrib/libtcmalloc/README

This file was deleted.

Loading