mirror of https://github.com/ByConity/ByConity
fixes
This commit is contained in:
parent
aa3dd03389
commit
5ba7e20c03
|
@ -94,6 +94,8 @@ list (APPEND dbms_headers src/TableFunctions/ITableFunction.h src/TableFunctions
|
|||
|
||||
list(REMOVE_ITEM dbms_common_io_sources
|
||||
src/Common/StringUtils.cpp)
|
||||
list(REMOVE_ITEM dbms_common_io_headers
|
||||
src/Common/StringUtils.h)
|
||||
|
||||
if (APPLE OR CMAKE_SYSTEM MATCHES "FreeBSD")
|
||||
list(REMOVE_ITEM dbms_common_io_headers
|
||||
|
@ -149,11 +151,13 @@ endif()
|
|||
|
||||
target_link_libraries (dbms_common_io
|
||||
common
|
||||
string_utils
|
||||
${LINK_LIBRARIES_ONLY_ON_X86_64}
|
||||
${LZ4_LIBRARY}
|
||||
${ZSTD_LIBRARY}
|
||||
${ZOOKEEPER_LIBRARY}
|
||||
${DOUBLE_CONVERSION_LIBRARIES}
|
||||
${Poco_Net_LIBRARY}
|
||||
)
|
||||
|
||||
target_link_libraries (dbms
|
||||
|
@ -161,7 +165,6 @@ target_link_libraries (dbms
|
|||
${MYSQLXX_LIBRARY}
|
||||
${FARMHASH_LIBRARIES}
|
||||
${METROHASH_LIBRARIES}
|
||||
string_utils
|
||||
${ZLIB_LIBRARIES}
|
||||
${RE2_LIBRARY}
|
||||
${RE2_ST_LIBRARY}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include <Common/config.h>
|
||||
#include <Core/Types.h>
|
||||
#include <IO/ReadBufferFromIStream.h>
|
||||
#include <Interpreters/DNSCache.h>
|
||||
#include <Common/DNSCache.h>
|
||||
#include <Poco/Net/HTTPRequest.h>
|
||||
#include <Poco/Net/HTTPResponse.h>
|
||||
#include <Poco/Version.h>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include <Interpreters/Cluster.h>
|
||||
#include <Interpreters/DNSCache.h>
|
||||
#include <Common/DNSCache.h>
|
||||
#include <Common/escapeForFileName.h>
|
||||
#include <Common/isLocalAddress.h>
|
||||
#include <Common/SimpleCache.h>
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
#include <Interpreters/QueryLog.h>
|
||||
#include <Interpreters/PartLog.h>
|
||||
#include <Interpreters/Context.h>
|
||||
#include <Interpreters/DNSCache.h>
|
||||
#include <Common/DNSCache.h>
|
||||
#include <IO/ReadBufferFromFile.h>
|
||||
#include <IO/UncompressedCache.h>
|
||||
#include <Parsers/ASTCreateQuery.h>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
#include <Interpreters/executeQuery.h>
|
||||
#include <Interpreters/Cluster.h>
|
||||
#include <Interpreters/DNSCache.h>
|
||||
#include <Common/DNSCache.h>
|
||||
|
||||
#include <Common/getFQDNOrHostName.h>
|
||||
#include <Common/setThreadName.h>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include <Interpreters/InterpreterSystemQuery.h>
|
||||
#include <Interpreters/DNSCache.h>
|
||||
#include <Common/DNSCache.h>
|
||||
#include <Interpreters/Context.h>
|
||||
#include <Interpreters/ExternalDictionaries.h>
|
||||
#include <Interpreters/EmbeddedDictionaries.h>
|
||||
|
|
Loading…
Reference in New Issue