mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
45 lines
804 B
C++
45 lines
804 B
C++
#include <string>
|
|
|
|
#include <iostream>
|
|
#include <sstream>
|
|
|
|
#include <DB/Core/Types.h>
|
|
#include <DB/IO/ReadHelpers.h>
|
|
#include <DB/IO/ReadBufferFromIStream.h>
|
|
|
|
|
|
int main(int argc, char ** argv)
|
|
{
|
|
try
|
|
{
|
|
std::stringstream s;
|
|
s << "-123456 123.456 вася пе\\tтя\t'\\'xyz\\\\'";
|
|
DB::ReadBufferFromIStream in(s);
|
|
|
|
DB::Int64 a;
|
|
DB::Float64 b;
|
|
DB::String c, d;
|
|
|
|
DB::readIntText(a, in);
|
|
in.ignore();
|
|
|
|
DB::readFloatText(b, in);
|
|
in.ignore();
|
|
|
|
DB::readEscapedString(c, in);
|
|
in.ignore();
|
|
|
|
DB::readQuotedString(d, in);
|
|
|
|
std::cout << a << ' ' << b << ' ' << c << '\t' << '\'' << d << '\'' << std::endl;
|
|
std::cout << in.count() << std::endl;
|
|
}
|
|
catch (const DB::Exception & e)
|
|
{
|
|
std::cerr << e.what() << ", " << e.displayText() << std::endl;
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|