mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
Merge pull request #28361 from DimasKovas/block_ouput_streams_compats
Add compat between SinkToStorage and BlockOutputStream
This commit is contained in:
commit
c6a754289b
@ -6,7 +6,7 @@ namespace DB
|
||||
{
|
||||
|
||||
SinkToOutputStream::SinkToOutputStream(BlockOutputStreamPtr stream_)
|
||||
: ISink(stream_->getHeader())
|
||||
: SinkToStorage(stream_->getHeader())
|
||||
, stream(std::move(stream_))
|
||||
{
|
||||
stream->writePrefix();
|
||||
|
@ -1,5 +1,5 @@
|
||||
#pragma once
|
||||
#include <Processors/ISink.h>
|
||||
#include <Processors/Sinks/SinkToStorage.h>
|
||||
|
||||
namespace DB
|
||||
{
|
||||
@ -9,7 +9,7 @@ using BlockOutputStreamPtr = std::shared_ptr<IBlockOutputStream>;
|
||||
|
||||
/// Sink which writes data to IBlockOutputStream.
|
||||
/// It's a temporary wrapper.
|
||||
class SinkToOutputStream : public ISink
|
||||
class SinkToOutputStream : public SinkToStorage
|
||||
{
|
||||
public:
|
||||
explicit SinkToOutputStream(BlockOutputStreamPtr stream);
|
||||
|
Loading…
Reference in New Issue
Block a user