mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
07d720565c
Added new column and CurrentMetrics data into system.events table. Removed unnecessary code from Context and Merge list. [#METR-23911]
51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
#pragma once
|
|
#include <DB/DataStreams/IBlockOutputStream.h>
|
|
#include <DB/DataStreams/IProfilingBlockInputStream.h>
|
|
#include <DB/Interpreters/ProcessList.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
/// Proxy class which counts number of written block, rows, bytes
|
|
class CountingBlockOutputStream : public IBlockOutputStream
|
|
{
|
|
public:
|
|
|
|
CountingBlockOutputStream(const BlockOutputStreamPtr & stream_)
|
|
: stream(stream_) {}
|
|
|
|
void setProgressCallback(ProgressCallback callback)
|
|
{
|
|
progress_callback = callback;
|
|
}
|
|
|
|
void setProcessListElement(ProcessListElement * elem)
|
|
{
|
|
process_elem = elem;
|
|
}
|
|
|
|
const Progress & getProgress() const
|
|
{
|
|
return progress;
|
|
}
|
|
|
|
void write(const Block & block) override;
|
|
|
|
void writePrefix() override { stream->writePrefix(); }
|
|
void writeSuffix() override { stream->writeSuffix(); }
|
|
void flush() override { stream->flush(); }
|
|
void onProgress(const Progress & progress) override { stream->onProgress(progress); }
|
|
String getContentType() const override { return stream->getContentType(); }
|
|
|
|
protected:
|
|
|
|
BlockOutputStreamPtr stream;
|
|
Progress progress;
|
|
ProgressCallback progress_callback;
|
|
ProcessListElement * process_elem = nullptr;
|
|
};
|
|
|
|
}
|