mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 17:32:32 +00:00
21 lines
395 B
C++
21 lines
395 B
C++
|
#include <DataStreams/NullBlockOutputStream.h>
|
||
|
#include <Formats/FormatFactory.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
void registerOutputFormatNull(FormatFactory & factory)
|
||
|
{
|
||
|
factory.registerOutputFormat("Null", [](
|
||
|
WriteBuffer &,
|
||
|
const Block & sample,
|
||
|
const Context &,
|
||
|
const FormatSettings &)
|
||
|
{
|
||
|
return std::make_shared<NullBlockOutputStream>(sample);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
}
|