mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
fix build
This commit is contained in:
parent
4df1f1bb9a
commit
4480e97f9f
@ -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
|
|
||||||
|
@ -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
|
||||||
|
@ -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_,
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user