mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 20:42:04 +00:00
0821d62516
Also a couple of massive include-refactorings with better forwarding
25 lines
659 B
C++
25 lines
659 B
C++
#pragma once
|
|
|
|
#include <DataStreams/IBlockStream_fwd.h>
|
|
|
|
#include <atomic>
|
|
#include <functional>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Block;
|
|
|
|
/** Copies data from the InputStream into the OutputStream
|
|
* (for example, from the database to the console, etc.)
|
|
*/
|
|
void copyData(IBlockInputStream & from, IBlockOutputStream & to, std::atomic<bool> * is_cancelled = nullptr);
|
|
|
|
void copyData(IBlockInputStream & from, IBlockOutputStream & to, const std::function<bool()> & is_cancelled);
|
|
|
|
void copyData(IBlockInputStream & from, IBlockOutputStream & to, const std::function<bool()> & is_cancelled,
|
|
const std::function<void(const Block & block)> & progress);
|
|
|
|
}
|