ClickHouse/dbms/include/DB/DataStreams/copyData.h

18 lines
350 B
C
Raw Normal View History

2011-11-06 06:22:52 +00:00
#pragma once
2010-03-04 19:20:28 +00:00
#include <atomic>
2010-03-04 19:20:28 +00:00
2010-03-04 19:20:28 +00:00
namespace DB
{
class IBlockInputStream;
class IBlockOutputStream;
2010-03-04 19:20:28 +00:00
/** Копирует данные из InputStream в OutputStream
* (например, из БД в консоль и т. п.)
*/
void copyData(IBlockInputStream & from, IBlockOutputStream & to, std::atomic<bool> * is_cancelled = nullptr);
2010-03-04 19:20:28 +00:00
}