mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
17 lines
264 B
C++
17 lines
264 B
C++
#include <IO/NullWriteBuffer.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
NullWriteBuffer::NullWriteBuffer(size_t buf_size, char * existing_memory, size_t alignment)
|
|
: BufferWithOwnMemory<WriteBuffer>(buf_size, existing_memory, alignment)
|
|
{
|
|
}
|
|
|
|
void NullWriteBuffer::nextImpl()
|
|
{
|
|
}
|
|
|
|
}
|