mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
18 lines
269 B
C++
18 lines
269 B
C++
#ifndef DBMS_IO_COPY_DATA_H
|
|
#define DBMS_IO_COPY_DATA_H
|
|
|
|
#include <DB/IO/ReadBuffer.h>
|
|
#include <DB/IO/WriteBuffer.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Копирует данные из ReadBuffer в WriteBuffer
|
|
*/
|
|
void copyData(ReadBuffer & from, WriteBuffer & to);
|
|
|
|
}
|
|
|
|
#endif
|