mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
44 lines
960 B
C++
44 lines
960 B
C++
#pragma once
|
|
|
|
#include "ConnectionParameters.h"
|
|
|
|
#include <Client/Connection.h>
|
|
#include <IO/ConnectionTimeouts.h>
|
|
#include <common/LineReader.h>
|
|
#include <thread>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
}
|
|
|
|
class Suggest : public LineReader::Suggest, boost::noncopyable
|
|
{
|
|
public:
|
|
Suggest();
|
|
~Suggest()
|
|
{
|
|
if (loading_thread.joinable())
|
|
loading_thread.join();
|
|
}
|
|
|
|
void load(const ConnectionParameters & connection_parameters, size_t suggestion_limit);
|
|
|
|
/// Older server versions cannot execute the query above.
|
|
static constexpr int MIN_SERVER_REVISION = 54406;
|
|
|
|
private:
|
|
|
|
void loadImpl(Connection & connection, const ConnectionTimeouts & timeouts, size_t suggestion_limit);
|
|
void fetch(Connection & connection, const ConnectionTimeouts & timeouts, const std::string & query);
|
|
void fillWordsFromBlock(const Block & block);
|
|
|
|
/// Words are fetched asynchronously.
|
|
std::thread loading_thread;
|
|
};
|
|
|
|
}
|