fix build

This commit is contained in:
CurtizJ 2019-09-17 17:16:07 +03:00
parent 4df1f1bb9a
commit 4480e97f9f
5 changed files with 3 additions and 7 deletions

View File

@ -10,4 +10,3 @@
#cmakedefine01 USE_BROTLI #cmakedefine01 USE_BROTLI
#cmakedefine01 USE_UNWIND #cmakedefine01 USE_UNWIND
#cmakedefine01 CLICKHOUSE_SPLIT_BINARY #cmakedefine01 CLICKHOUSE_SPLIT_BINARY
#cmakedefine01 USE_POCO_REDIS

View File

@ -1,4 +1,4 @@
#include <Common/config.h> #include "RedisBlockInputStream.h"
#if USE_POCO_REDIS #if USE_POCO_REDIS
# include <string> # include <string>
@ -17,7 +17,6 @@
# include <ext/range.h> # include <ext/range.h>
# include "DictionaryStructure.h" # include "DictionaryStructure.h"
# include "RedisBlockInputStream.h"
namespace DB namespace DB

View File

@ -11,7 +11,6 @@ namespace Poco
{ {
class Array; class Array;
class Client; class Client;
class RedisType;
} }
} }
@ -22,8 +21,6 @@ namespace DB
{ {
public: public:
using RedisArray = Poco::Redis::Array; using RedisArray = Poco::Redis::Array;
using RedisTypePtr = Poco::Redis::RedisType::Ptr;
using RedisBulkString = Poco::Redis::BulkString;
RedisBlockInputStream( RedisBlockInputStream(
const std::shared_ptr<Poco::Redis::Client> & client_, const std::shared_ptr<Poco::Redis::Client> & client_,

View File

@ -1,6 +1,6 @@
#pragma once #pragma once
#include <Common/config.h> #include "config_core.h"
#include <Core/Block.h> #include <Core/Block.h>
#if USE_POCO_REDIS #if USE_POCO_REDIS

View File

@ -61,6 +61,7 @@ const char * auto_config_build[]
"USE_SSL", "@USE_SSL@", "USE_SSL", "@USE_SSL@",
"USE_HYPERSCAN", "@USE_HYPERSCAN@", "USE_HYPERSCAN", "@USE_HYPERSCAN@",
"USE_SIMDJSON", "@USE_SIMDJSON@", "USE_SIMDJSON", "@USE_SIMDJSON@",
"USE_POCO_REDIS", "@USE_POCO_REDIS",
nullptr, nullptr nullptr, nullptr
}; };