mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
20 lines
341 B
C++
20 lines
341 B
C++
#pragma once
|
|
|
|
#include <DB/IO/ReadBuffer.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Позволяет читать из строки.
|
|
*/
|
|
class ReadBufferFromString : public ReadBuffer
|
|
{
|
|
public:
|
|
/// std::string или mysqlxx::Value
|
|
template <typename S>
|
|
ReadBufferFromString(const S & s) : ReadBuffer(const_cast<char *>(s.data()), s.size(), 0) {}
|
|
};
|
|
|
|
}
|