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

19 lines
357 B
C
Raw Normal View History

2014-04-08 06:51:53 +00:00
#pragma once
#include <DB/IO/ReadBuffer.h>
#include <DB/IO/WriteBuffer.h>
namespace DB
{
/** Копирует данные из ReadBuffer в WriteBuffer
*/
void copyData(ReadBuffer & from, WriteBuffer & to);
2014-04-02 13:45:39 +00:00
/** Копирует bytes байт из ReadBuffer в WriteBuffer
*/
void copyData(ReadBuffer & from, WriteBuffer & to, size_t bytes);
}