mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
b7f92454bf
This will simplify linking dependencies, and anyway this classes are not base in any sense. Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
44 lines
1.0 KiB
C++
44 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include "ConnectionParameters.h"
|
|
|
|
#include <Client/Connection.h>
|
|
#include <Client/IServerConnection.h>
|
|
#include <Client/LocalConnection.h>
|
|
#include <Client/LineReader.h>
|
|
#include <IO/ConnectionTimeouts.h>
|
|
#include <thread>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Suggest : public LineReader::Suggest, boost::noncopyable
|
|
{
|
|
public:
|
|
Suggest();
|
|
|
|
~Suggest()
|
|
{
|
|
if (loading_thread.joinable())
|
|
loading_thread.join();
|
|
}
|
|
|
|
/// Load suggestions for clickhouse-client.
|
|
template <typename ConnectionType>
|
|
void load(ContextPtr context, const ConnectionParameters & connection_parameters, Int32 suggestion_limit);
|
|
|
|
/// Older server versions cannot execute the query loading suggestions.
|
|
static constexpr int MIN_SERVER_REVISION = DBMS_MIN_PROTOCOL_VERSION_WITH_VIEW_IF_PERMITTED;
|
|
|
|
private:
|
|
void fetch(IServerConnection & connection, const ConnectionTimeouts & timeouts, const std::string & query);
|
|
|
|
void fillWordsFromBlock(const Block & block);
|
|
|
|
/// Words are fetched asynchronously.
|
|
std::thread loading_thread;
|
|
};
|
|
|
|
}
|