2016-02-07 21:58:58 +00:00
|
|
|
add_executable (hashes_test hashes_test.cpp)
|
2019-03-22 11:18:24 +00:00
|
|
|
target_link_libraries (hashes_test PRIVATE clickhouse_common_io ${CITYHASH_LIBRARIES})
|
|
|
|
if(OPENSSL_CRYPTO_LIBRARY)
|
|
|
|
target_link_libraries (hashes_test PRIVATE ${OPENSSL_CRYPTO_LIBRARY})
|
|
|
|
endif()
|
2016-02-07 21:58:58 +00:00
|
|
|
|
|
|
|
add_executable (sip_hash_perf sip_hash_perf.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (sip_hash_perf PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
|
|
|
add_executable (auto_array auto_array.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (auto_array PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
|
|
|
add_executable (hash_table hash_table.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (hash_table PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
|
|
|
add_executable (small_table small_table.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (small_table PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
|
|
|
add_executable (parallel_aggregation parallel_aggregation.cpp)
|
2019-07-09 21:37:43 +00:00
|
|
|
target_link_libraries (parallel_aggregation PRIVATE dbms)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
|
|
|
add_executable (parallel_aggregation2 parallel_aggregation2.cpp)
|
2019-07-09 21:37:43 +00:00
|
|
|
target_link_libraries (parallel_aggregation2 PRIVATE dbms)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2020-03-19 23:48:53 +00:00
|
|
|
add_executable (int_hashes_perf int_hashes_perf.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (int_hashes_perf PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
|
|
|
add_executable (simple_cache simple_cache.cpp)
|
2017-08-31 19:27:55 +00:00
|
|
|
target_include_directories (simple_cache PRIVATE ${DBMS_INCLUDE_DIR})
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (simple_cache PRIVATE common)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
|
|
|
add_executable (compact_array compact_array.cpp)
|
2019-09-15 10:35:12 +00:00
|
|
|
target_link_libraries (compact_array PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
|
|
|
add_executable (radix_sort radix_sort.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (radix_sort PRIVATE clickhouse_common_io)
|
2016-02-07 21:58:58 +00:00
|
|
|
|
|
|
|
add_executable (arena_with_free_lists arena_with_free_lists.cpp)
|
2019-07-09 21:37:43 +00:00
|
|
|
target_link_libraries (arena_with_free_lists PRIVATE dbms)
|
2016-07-07 16:56:49 +00:00
|
|
|
|
|
|
|
add_executable (pod_array pod_array.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (pod_array PRIVATE clickhouse_common_io)
|
2016-08-02 01:46:05 +00:00
|
|
|
|
|
|
|
add_executable (thread_creation_latency thread_creation_latency.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (thread_creation_latency PRIVATE clickhouse_common_io)
|
2016-09-26 10:15:33 +00:00
|
|
|
|
2017-04-09 06:29:26 +00:00
|
|
|
add_executable (array_cache array_cache.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (array_cache PRIVATE clickhouse_common_io)
|
2017-05-02 21:08:37 +00:00
|
|
|
|
|
|
|
add_executable (space_saving space_saving.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (space_saving PRIVATE clickhouse_common_io)
|
2017-08-21 20:22:08 +00:00
|
|
|
|
|
|
|
add_executable (integer_hash_tables_and_hashes integer_hash_tables_and_hashes.cpp)
|
2019-09-17 21:08:20 +00:00
|
|
|
target_include_directories (integer_hash_tables_and_hashes SYSTEM BEFORE PRIVATE ${SPARSEHASH_INCLUDE_DIR})
|
2019-07-09 21:37:43 +00:00
|
|
|
target_link_libraries (integer_hash_tables_and_hashes PRIVATE dbms)
|
2017-11-17 20:27:12 +00:00
|
|
|
|
2017-12-11 02:59:56 +00:00
|
|
|
add_executable (cow_columns cow_columns.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (cow_columns PRIVATE clickhouse_common_io)
|
2018-02-25 02:43:27 +00:00
|
|
|
|
2019-03-24 01:42:58 +00:00
|
|
|
add_executable (cow_compositions cow_compositions.cpp)
|
|
|
|
target_link_libraries (cow_compositions PRIVATE clickhouse_common_io)
|
|
|
|
|
2018-02-25 02:43:27 +00:00
|
|
|
add_executable (stopwatch stopwatch.cpp)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_link_libraries (stopwatch PRIVATE clickhouse_common_io)
|
2019-07-15 18:49:30 +00:00
|
|
|
|
2019-07-29 01:08:52 +00:00
|
|
|
add_executable (symbol_index symbol_index.cpp)
|
|
|
|
target_link_libraries (symbol_index PRIVATE clickhouse_common_io)
|
2020-02-28 18:12:52 +00:00
|
|
|
|
|
|
|
add_executable (chaos_sanitizer chaos_sanitizer.cpp)
|
|
|
|
target_link_libraries (chaos_sanitizer PRIVATE clickhouse_common_io)
|