2019-12-15 06:34:43 +00:00
|
|
|
configure_file(config_functions.h.in ${ConfigIncludePath}/config_functions.h)
|
2019-06-20 09:12:49 +00:00
|
|
|
|
2017-04-21 17:47:27 +00:00
|
|
|
include(${ClickHouse_SOURCE_DIR}/cmake/dbms_glob_sources.cmake)
|
2018-12-23 14:19:11 +00:00
|
|
|
add_headers_and_sources(clickhouse_functions .)
|
2018-06-19 18:09:09 +00:00
|
|
|
|
2019-12-09 13:12:54 +00:00
|
|
|
list(REMOVE_ITEM clickhouse_functions_sources IFunctionImpl.cpp FunctionFactory.cpp FunctionHelpers.cpp)
|
|
|
|
list(REMOVE_ITEM clickhouse_functions_headers IFunctionImpl.h FunctionFactory.h FunctionHelpers.h)
|
2017-04-21 17:47:27 +00:00
|
|
|
|
2019-04-24 09:06:28 +00:00
|
|
|
add_library(clickhouse_functions ${clickhouse_functions_sources})
|
2018-04-07 02:29:12 +00:00
|
|
|
|
2018-11-28 11:37:12 +00:00
|
|
|
target_link_libraries(clickhouse_functions
|
|
|
|
PUBLIC
|
|
|
|
clickhouse_dictionaries
|
2019-07-03 16:53:20 +00:00
|
|
|
clickhouse_dictionaries_embedded
|
2019-03-05 10:15:47 +00:00
|
|
|
dbms
|
2020-03-12 22:26:16 +00:00
|
|
|
consistent-hashing
|
2018-11-28 11:37:12 +00:00
|
|
|
consistent-hashing-sumbur
|
2019-03-05 10:15:47 +00:00
|
|
|
${CITYHASH_LIBRARIES}
|
2018-11-28 11:37:12 +00:00
|
|
|
${FARMHASH_LIBRARIES}
|
|
|
|
${METROHASH_LIBRARIES}
|
|
|
|
murmurhash
|
|
|
|
${BASE64_LIBRARY}
|
2019-08-01 00:29:32 +00:00
|
|
|
${FASTOPS_LIBRARY}
|
2019-07-03 16:53:20 +00:00
|
|
|
|
|
|
|
PRIVATE
|
2019-08-04 00:19:03 +00:00
|
|
|
${ZLIB_LIBRARIES}
|
2019-07-03 16:53:20 +00:00
|
|
|
${Boost_FILESYSTEM_LIBRARY}
|
2019-03-22 11:18:24 +00:00
|
|
|
)
|
2018-04-07 02:29:12 +00:00
|
|
|
|
2019-03-22 11:18:24 +00:00
|
|
|
if (OPENSSL_CRYPTO_LIBRARY)
|
|
|
|
target_link_libraries(clickhouse_functions PUBLIC ${OPENSSL_CRYPTO_LIBRARY})
|
|
|
|
endif()
|
2018-04-07 02:29:12 +00:00
|
|
|
|
2019-09-20 23:22:40 +00:00
|
|
|
target_include_directories(clickhouse_functions SYSTEM PRIVATE ${DIVIDE_INCLUDE_DIR} ${METROHASH_INCLUDE_DIR} ${SPARSEHASH_INCLUDE_DIR})
|
2017-04-21 17:47:27 +00:00
|
|
|
|
2017-10-25 18:39:10 +00:00
|
|
|
if (CMAKE_BUILD_TYPE_UC STREQUAL "RELEASE" OR CMAKE_BUILD_TYPE_UC STREQUAL "RELWITHDEBINFO" OR CMAKE_BUILD_TYPE_UC STREQUAL "MINSIZEREL")
|
2017-10-24 13:30:44 +00:00
|
|
|
# Won't generate debug info for files with heavy template instantiation to achieve faster linking and lower size.
|
|
|
|
target_compile_options(clickhouse_functions PRIVATE "-g0")
|
|
|
|
endif ()
|
|
|
|
|
2018-01-19 17:04:32 +00:00
|
|
|
if (USE_ICU)
|
2018-11-27 15:34:21 +00:00
|
|
|
target_link_libraries (clickhouse_functions PRIVATE ${ICU_LIBRARIES})
|
2019-02-02 11:09:22 +00:00
|
|
|
target_include_directories(clickhouse_functions SYSTEM PRIVATE ${ICU_INCLUDE_DIRS})
|
2018-01-19 17:04:32 +00:00
|
|
|
endif ()
|
|
|
|
|
2019-08-01 00:29:32 +00:00
|
|
|
if (USE_FASTOPS)
|
|
|
|
target_include_directories (clickhouse_functions SYSTEM PRIVATE ${FASTOPS_INCLUDE_DIR})
|
2017-08-03 12:44:39 +00:00
|
|
|
endif ()
|
|
|
|
|
2016-12-01 22:44:59 +00:00
|
|
|
if (ENABLE_TESTS)
|
2017-04-01 07:20:54 +00:00
|
|
|
add_subdirectory (tests)
|
2017-04-10 17:43:30 +00:00
|
|
|
endif ()
|
Add a JIT interface for row-wise default-nullable functions.
Not actually implemented, though. It does print out some jit-compiled stuff,
but that's about it. For example, this query:
select number from system.numbers where something(cast(number as Float64)) == 4
results in this on server's stderr:
define double @"something(CAST(number, 'Float64'))"(void**, i8*, void*) {
"something(CAST(number, 'Float64'))":
ret double 1.234500e+04
}
(and an exception, because that's what the non-jitted method does.)
As one may notice, this function neither reads the input (first argument;
tuple of arrays) nor writes the output (third argument; array), instead
returning some general nonsense.
In addition, `#if USE_EMBEDDED_COMPILER` doesn't work for some reason,
including LLVM headers requires -Wno-unused-parameter, this probably only
works on LLVM 5.0 due to rampant API instability, and I'm definitely
no expert on CMake. In short, there's still a long way to go.
2018-04-23 22:29:39 +00:00
|
|
|
|
|
|
|
if (USE_EMBEDDED_COMPILER)
|
2019-01-11 16:52:46 +00:00
|
|
|
target_link_libraries(clickhouse_functions PRIVATE ${REQUIRED_LLVM_LIBRARIES})
|
|
|
|
target_include_directories(clickhouse_functions SYSTEM BEFORE PUBLIC ${LLVM_INCLUDE_DIRS})
|
Add a JIT interface for row-wise default-nullable functions.
Not actually implemented, though. It does print out some jit-compiled stuff,
but that's about it. For example, this query:
select number from system.numbers where something(cast(number as Float64)) == 4
results in this on server's stderr:
define double @"something(CAST(number, 'Float64'))"(void**, i8*, void*) {
"something(CAST(number, 'Float64'))":
ret double 1.234500e+04
}
(and an exception, because that's what the non-jitted method does.)
As one may notice, this function neither reads the input (first argument;
tuple of arrays) nor writes the output (third argument; array), instead
returning some general nonsense.
In addition, `#if USE_EMBEDDED_COMPILER` doesn't work for some reason,
including LLVM headers requires -Wno-unused-parameter, this probably only
works on LLVM 5.0 due to rampant API instability, and I'm definitely
no expert on CMake. In short, there's still a long way to go.
2018-04-23 22:29:39 +00:00
|
|
|
endif ()
|
2018-10-11 16:22:50 +00:00
|
|
|
|
2019-01-11 16:52:46 +00:00
|
|
|
if(USE_BASE64)
|
|
|
|
target_include_directories(clickhouse_functions SYSTEM PRIVATE ${BASE64_INCLUDE_DIR})
|
2018-11-23 18:52:00 +00:00
|
|
|
endif()
|
2019-02-24 21:20:46 +00:00
|
|
|
|
2019-05-15 17:19:39 +00:00
|
|
|
if(USE_XXHASH)
|
2019-02-24 21:20:46 +00:00
|
|
|
target_link_libraries(clickhouse_functions PRIVATE ${XXHASH_LIBRARY})
|
|
|
|
target_include_directories(clickhouse_functions SYSTEM PRIVATE ${XXHASH_INCLUDE_DIR})
|
|
|
|
endif()
|
2019-03-25 14:34:52 +00:00
|
|
|
|
|
|
|
if (USE_H3)
|
|
|
|
target_link_libraries(clickhouse_functions PRIVATE ${H3_LIBRARY})
|
|
|
|
target_include_directories(clickhouse_functions SYSTEM PRIVATE ${H3_INCLUDE_DIR})
|
|
|
|
endif()
|
2019-06-20 10:53:17 +00:00
|
|
|
|
2019-05-15 17:19:39 +00:00
|
|
|
if(USE_HYPERSCAN)
|
|
|
|
target_link_libraries(clickhouse_functions PRIVATE ${HYPERSCAN_LIBRARY})
|
|
|
|
target_include_directories(clickhouse_functions SYSTEM PRIVATE ${HYPERSCAN_INCLUDE_DIR})
|
|
|
|
endif()
|
2019-03-14 04:48:30 +00:00
|
|
|
|
2019-05-15 17:19:39 +00:00
|
|
|
if(USE_SIMDJSON)
|
2019-05-07 23:31:35 +00:00
|
|
|
target_link_libraries(clickhouse_functions PRIVATE ${SIMDJSON_LIBRARY})
|
2019-05-15 17:19:39 +00:00
|
|
|
endif()
|
2019-05-16 17:40:24 +00:00
|
|
|
|
|
|
|
if(USE_RAPIDJSON)
|
|
|
|
target_include_directories(clickhouse_functions SYSTEM PRIVATE ${RAPIDJSON_INCLUDE_DIR})
|
|
|
|
endif()
|
2019-06-20 15:49:54 +00:00
|
|
|
|
2019-06-21 15:31:37 +00:00
|
|
|
add_subdirectory(GatherUtils)
|
|
|
|
target_link_libraries(clickhouse_functions PRIVATE clickhouse_functions_gatherutils)
|
|
|
|
|
2019-06-20 15:49:54 +00:00
|
|
|
add_subdirectory(URL)
|
|
|
|
target_link_libraries(clickhouse_functions PRIVATE clickhouse_functions_url)
|
2019-06-21 15:31:37 +00:00
|
|
|
|
|
|
|
add_subdirectory(array)
|
|
|
|
target_link_libraries(clickhouse_functions PRIVATE clickhouse_functions_array)
|