more sync fixes

This commit is contained in:
Yatsishin Ilya 2021-08-04 10:58:39 +03:00
parent e939dc0b9c
commit 6e74728714
8 changed files with 17 additions and 11 deletions

View File

@ -97,7 +97,7 @@
#endif
#if USE_SSL
# if USE_INTERNAL_SSL_LIBRARY
# if USE_INTERNAL_SSL_LIBRARY && !defined(ARCADIA_BUILD)
# include <Compression/CompressionCodecEncrypted.h>
# endif
# include <Poco/Net/Context.h>

View File

@ -5,9 +5,9 @@
#include <Compression/CompressionCodecEncrypted.h>
#include <Parsers/ASTLiteral.h>
#include <cassert>
#include <openssl/digest.h>
#include <openssl/digest.h> // Y_IGNORE
#include <openssl/err.h>
#include <openssl/hkdf.h>
#include <openssl/hkdf.h> // Y_IGNORE
#include <string_view>
namespace DB

View File

@ -2,11 +2,11 @@
// This depends on BoringSSL-specific API, notably <openssl/aead.h>.
#include <Common/config.h>
#if USE_SSL && USE_INTERNAL_SSL_LIBRARY
#if USE_SSL && USE_INTERNAL_SSL_LIBRARY && !defined(ARCADIA_BUILD)
#include <Compression/ICompressionCodec.h>
#include <boost/noncopyable.hpp>
#include <openssl/aead.h>
#include <openssl/aead.h> // Y_IGNORE
#include <optional>
namespace DB

View File

@ -11,7 +11,7 @@
#include <Functions/IFunction.h>
#include <Interpreters/Context.h>
#include <libstemmer.h>
#include <libstemmer.h> // Y_IGNORE
namespace DB

View File

@ -6,8 +6,8 @@
#if USE_NLP
#include <Common/Exception.h>
#include <Interpreters/Lemmatizers.h>
#include <RdrLemmatizer.h>
#include <Interpreters/Lemmatizers.h> // Y_IGNORE
#include <RdrLemmatizer.h> // Y_IGNORE
#include <vector>
#include <filesystem>

View File

@ -11,7 +11,7 @@
#include <list>
#include <boost/algorithm/string.hpp>
#include <wnb/core/wordnet.hh>
#include <wnb/core/wordnet.hh> // Y_IGNORE
namespace DB
{

View File

@ -7,11 +7,11 @@ PEERDIR(
clickhouse/src/Common
contrib/libs/msgpack
contrib/libs/protobuf
contrib/libs/arrow
contrib/libs/apache/arrow
)
ADDINCL(
contrib/libs/arrow/src
contrib/libs/apache/arrow/src
)
CFLAGS(-DUSE_ARROW=1)

View File

@ -6,8 +6,14 @@ PEERDIR(
clickhouse/src/Common
contrib/libs/msgpack
contrib/libs/protobuf
contrib/libs/apache/arrow
)
ADDINCL(
contrib/libs/apache/arrow/src
)
CFLAGS(-DUSE_ARROW=1)
SRCS(
<? find . -name '*.cpp' | grep -v -F tests | grep -v -F examples | grep -v -P 'Arrow|Avro|ORC|Parquet|CapnProto' | sed 's/^\.\// /' | sort ?>