mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 10:52:30 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
41 lines
843 B
C++
41 lines
843 B
C++
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
#include <Core/Types.h>
|
|
#include <IO/ReadHelpers.h>
|
|
#include <IO/ReadBufferFromMemory.h>
|
|
#include <IO/ConcatReadBuffer.h>
|
|
|
|
|
|
using namespace DB;
|
|
|
|
int main(int, char **)
|
|
try
|
|
{
|
|
std::string s1 = "abc\\x\n";
|
|
std::string s2 = "\tdef";
|
|
|
|
ReadBufferFromMemory rb1(s1.data(), 3);
|
|
ReadBufferFromMemory rb2(s2.data(), s2.size());
|
|
|
|
ConcatReadBuffer rb3(rb1, rb2);
|
|
|
|
std::string read_s1;
|
|
std::string read_s2;
|
|
|
|
readEscapedString(read_s1, rb3);
|
|
assertChar('\t', rb3);
|
|
readEscapedString(read_s2, rb3);
|
|
|
|
std::cerr << read_s1 << ", " << read_s2 << std::endl;
|
|
std::cerr << ((read_s1 == "abc" && read_s2 == "def") ? "Ok." : "Fail.") << std::endl;
|
|
|
|
return 0;
|
|
}
|
|
catch (const Exception & e)
|
|
{
|
|
std::cerr << e.what() << ", " << e.displayText() << std::endl;
|
|
return 1;
|
|
}
|