mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
23 lines
615 B
C
23 lines
615 B
C
|
#ifndef DBMS_DATA_STREAMS_COPY_DATA_H
|
|||
|
#define DBMS_DATA_STREAMS_COPY_DATA_H
|
|||
|
|
|||
|
#include <DB/DataStreams/IBlockInputStream.h>
|
|||
|
#include <DB/DataStreams/IBlockOutputStream.h>
|
|||
|
#include <DB/DataStreams/IRowInputStream.h>
|
|||
|
#include <DB/DataStreams/IRowOutputStream.h>
|
|||
|
|
|||
|
|
|||
|
namespace DB
|
|||
|
{
|
|||
|
|
|||
|
/** Копирует данные из InputStream в OutputStream
|
|||
|
* (например, из БД в консоль и т. п.)
|
|||
|
*/
|
|||
|
void copyData(IBlockInputStream & from, IBlockOutputStream & to);
|
|||
|
void copyData(IRowInputStream & from, IRowOutputStream & to);
|
|||
|
void copyData(IBlockInputStream & from, IRowOutputStream & to);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endif
|