mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 02:12:21 +00:00
25 lines
636 B
C++
25 lines
636 B
C++
#pragma once
|
|
|
|
#include <Processors/Formats/Impl/PrettyBlockOutputFormat.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Prints the result, aligned with spaces.
|
|
*/
|
|
class PrettySpaceBlockOutputFormat : public PrettyBlockOutputFormat
|
|
{
|
|
public:
|
|
PrettySpaceBlockOutputFormat(WriteBuffer & out_, const Block & header, const FormatSettings & format_settings_, bool mono_block_)
|
|
: PrettyBlockOutputFormat(out_, header, format_settings_, mono_block_) {}
|
|
|
|
String getName() const override { return "PrettySpaceBlockOutputFormat"; }
|
|
|
|
private:
|
|
void writeChunk(const Chunk & chunk, PortKind port_kind) override;
|
|
void writeSuffix() override;
|
|
};
|
|
|
|
}
|