ClickHouse/dbms/src/Interpreters/tests/CMakeLists.txt

65 lines
3.1 KiB
CMake
Raw Normal View History

2016-02-07 21:58:58 +00:00
add_executable (expression expression.cpp)
target_link_libraries (expression PRIVATE dbms clickhouse_parsers)
2016-02-07 21:58:58 +00:00
add_executable (create_query create_query.cpp)
target_link_libraries (create_query PRIVATE dbms clickhouse_parsers)
2016-02-07 21:58:58 +00:00
add_executable (select_query select_query.cpp)
target_link_libraries (select_query PRIVATE clickhouse_storages_system dbms clickhouse_common_io)
2016-02-07 21:58:58 +00:00
add_executable (aggregate aggregate.cpp)
target_link_libraries (aggregate PRIVATE dbms)
2016-02-07 21:58:58 +00:00
add_executable (hash_map hash_map.cpp)
target_include_directories (hash_map SYSTEM BEFORE PRIVATE ${SPARCEHASH_INCLUDE_DIR})
2018-12-28 18:15:26 +00:00
target_link_libraries (hash_map PRIVATE dbms clickhouse_compression)
2016-02-07 21:58:58 +00:00
A Proper lookup table that uses HashTable's API This is the first step of allowing heterogeneous cells in hash tables. performance test results are ``` 1. HashMap<UInt16, UInt8, TrivialHash, HashTableFixedGrower<16>>; 2. NewLookupMap<UInt16, UInt8> ResolutionWidth 30000 1 .................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................223550276.46 ResolutionWidth 30000 2 .................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................248772721.24 Best: 2 - 24877272124 ResolutionWidth 100000 1 ..........................................................................................................................................................................................................................................................238498413.99 ResolutionWidth 100000 2 ..........................................................................................................................................................................................................................................................261808889.98 Best: 2 - 26180888998 ResolutionWidth 300000 1 ...................................................................................239307348.81 ResolutionWidth 300000 2 ...................................................................................257592761.30 Best: 2 - 25759276130 ResolutionWidth 1000000 1 .........................240144759.26 ResolutionWidth 1000000 2 .........................257093531.91 Best: 2 - 25709353191 ResolutionWidth 5000000 1 .....241573260.35 ResolutionWidth 5000000 2 .....259314162.79 Best: 2 - 25931416279 ResolutionDepth 30000 1 .................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................217108119.84 ResolutionDepth 30000 2 .................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................249459504.41 Best: 2 - 24945950441 ResolutionDepth 100000 1 ..........................................................................................................................................................................................................................................................229065162.17 ResolutionDepth 100000 2 ..........................................................................................................................................................................................................................................................253769105.64 Best: 2 - 25376910564 ResolutionDepth 300000 1 ...................................................................................233079225.18 ResolutionDepth 300000 2 ...................................................................................256316273.78 Best: 2 - 25631627378 ResolutionDepth 1000000 1 .........................234184633.51 ResolutionDepth 1000000 2 .........................261100491.57 Best: 2 - 26110049157 ResolutionDepth 5000000 1 .....233118795.66 ResolutionDepth 5000000 2 .....252436160.41 Best: 2 - 25243616041 ```
2019-02-28 09:35:38 +00:00
add_executable (hash_map_lookup hash_map_lookup.cpp)
target_include_directories (hash_map_lookup SYSTEM BEFORE PRIVATE ${SPARCEHASH_INCLUDE_DIR})
target_link_libraries (hash_map_lookup PRIVATE dbms clickhouse_compression)
2016-02-07 21:58:58 +00:00
add_executable (hash_map3 hash_map3.cpp)
2019-01-28 14:00:50 +00:00
target_include_directories(hash_map3 SYSTEM BEFORE PRIVATE ${METROHASH_INCLUDE_DIR})
target_link_libraries (hash_map3 PRIVATE dbms ${FARMHASH_LIBRARIES} ${METROHASH_LIBRARIES})
2016-02-07 21:58:58 +00:00
add_executable (hash_map_string hash_map_string.cpp)
target_include_directories (hash_map_string SYSTEM BEFORE PRIVATE ${SPARCEHASH_INCLUDE_DIR})
2018-12-28 18:15:26 +00:00
target_link_libraries (hash_map_string PRIVATE dbms clickhouse_compression)
2016-02-07 21:58:58 +00:00
add_executable (hash_map_string_2 hash_map_string_2.cpp)
2018-12-28 18:15:26 +00:00
target_link_libraries (hash_map_string_2 PRIVATE dbms clickhouse_compression)
2016-02-07 21:58:58 +00:00
add_executable (hash_map_string_3 hash_map_string_3.cpp)
2019-01-28 14:00:50 +00:00
target_include_directories(hash_map_string_3 SYSTEM BEFORE PRIVATE ${METROHASH_INCLUDE_DIR})
2018-12-28 18:15:26 +00:00
target_link_libraries (hash_map_string_3 PRIVATE dbms clickhouse_compression ${FARMHASH_LIBRARIES} ${METROHASH_LIBRARIES})
2016-02-07 21:58:58 +00:00
add_executable (hash_map_string_small hash_map_string_small.cpp)
target_include_directories (hash_map_string_small SYSTEM BEFORE PRIVATE ${SPARCEHASH_INCLUDE_DIR})
2018-12-28 18:15:26 +00:00
target_link_libraries (hash_map_string_small PRIVATE dbms clickhouse_compression)
2016-02-07 21:58:58 +00:00
add_executable (two_level_hash_map two_level_hash_map.cpp)
target_include_directories (two_level_hash_map SYSTEM BEFORE PRIVATE ${SPARCEHASH_INCLUDE_DIR})
2018-12-28 18:15:26 +00:00
target_link_libraries (two_level_hash_map PRIVATE dbms clickhouse_compression)
2016-02-07 21:58:58 +00:00
add_executable (compiler_test compiler_test.cpp)
target_link_libraries (compiler_test PRIVATE dbms)
2016-02-07 21:58:58 +00:00
add_executable (logical_expressions_optimizer logical_expressions_optimizer.cpp)
target_link_libraries (logical_expressions_optimizer PRIVATE dbms clickhouse_parsers)
2016-02-07 21:58:58 +00:00
add_executable (in_join_subqueries_preprocessor in_join_subqueries_preprocessor.cpp)
target_link_libraries (in_join_subqueries_preprocessor PRIVATE dbms clickhouse_parsers)
2016-11-13 02:19:38 +00:00
add_check(in_join_subqueries_preprocessor)
2016-02-07 21:58:58 +00:00
add_executable (expression_analyzer expression_analyzer.cpp)
target_link_libraries (expression_analyzer PRIVATE dbms clickhouse_storages_system clickhouse_parsers clickhouse_common_io)
add_check(expression_analyzer)
2016-02-07 21:58:58 +00:00
add_executable (users users.cpp)
target_link_libraries (users PRIVATE dbms clickhouse_common_config ${Boost_FILESYSTEM_LIBRARY})
if (OS_LINUX)
add_executable (internal_iotop internal_iotop.cpp)
2019-01-28 18:21:20 +00:00
target_link_libraries (internal_iotop PRIVATE dbms Threads::Threads)
endif ()