mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 02:12:21 +00:00
24 lines
490 B
C++
24 lines
490 B
C++
#include <Processors/Formats/Impl/NullFormat.h>
|
|
#include <Formats/FormatFactory.h>
|
|
#include <IO/WriteBuffer.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
WriteBuffer NullOutputFormat::empty_buffer(nullptr, 0);
|
|
|
|
void registerOutputFormatNull(FormatFactory & factory)
|
|
{
|
|
factory.registerOutputFormat("Null", [](
|
|
WriteBuffer &,
|
|
const Block & sample,
|
|
const RowOutputFormatParams &,
|
|
const FormatSettings &)
|
|
{
|
|
return std::make_shared<NullOutputFormat>(sample);
|
|
});
|
|
}
|
|
|
|
}
|