mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-16 12:44:42 +00:00
19 lines
416 B
C++
19 lines
416 B
C++
|
#pragma once
|
||
|
|
||
|
#include "LineReader.h"
|
||
|
|
||
|
#include <replxx.hxx>
|
||
|
|
||
|
class ReplxxLineReader : public LineReader
|
||
|
{
|
||
|
public:
|
||
|
ReplxxLineReader(const Suggest & suggest, const String & history_file_path, char extender, char delimiter = 0);
|
||
|
~ReplxxLineReader() override;
|
||
|
|
||
|
private:
|
||
|
InputStatus readOneLine(const String & prompt) override;
|
||
|
void addToHistory(const String & line) override;
|
||
|
|
||
|
replxx::Replxx rx;
|
||
|
};
|