#include #include namespace DB { void registerOutputFormatNull(FormatFactory & factory) { factory.registerOutputFormat("Null", []( WriteBuffer &, const Block & sample, const Context &, const FormatSettings &) { return std::make_shared(sample); }); } }