mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
50 lines
943 B
C++
50 lines
943 B
C++
#include <string>
|
|
|
|
#include <iostream>
|
|
#include <fstream>
|
|
|
|
#include <Core/Types.h>
|
|
#include <IO/ReadHelpers.h>
|
|
#include <IO/ReadBufferFromFile.h>
|
|
|
|
|
|
int main(int, char **)
|
|
{
|
|
try
|
|
{
|
|
DB::ReadBufferFromFile in("test");
|
|
|
|
DB::Int64 a = 0;
|
|
DB::Float64 b = 0;
|
|
DB::String c, d;
|
|
|
|
size_t i = 0;
|
|
while (!in.eof())
|
|
{
|
|
DB::readIntText(a, in);
|
|
in.ignore();
|
|
|
|
DB::readFloatText(b, in);
|
|
in.ignore();
|
|
|
|
DB::readEscapedString(c, in);
|
|
in.ignore();
|
|
|
|
DB::readQuotedString(d, in);
|
|
in.ignore();
|
|
|
|
++i;
|
|
}
|
|
|
|
std::cout << a << ' ' << b << ' ' << c << '\t' << '\'' << d << '\'' << std::endl;
|
|
std::cout << i << std::endl;
|
|
}
|
|
catch (const DB::Exception & e)
|
|
{
|
|
std::cerr << e.what() << ", " << e.displayText() << std::endl;
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|