Merge pull request #28361 from DimasKovas/block_ouput_streams_compats

Add compat between SinkToStorage and BlockOutputStream
This commit is contained in:
alexey-milovidov 2021-08-31 01:41:33 +03:00 committed by GitHub
commit c6a754289b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ namespace DB
{
SinkToOutputStream::SinkToOutputStream(BlockOutputStreamPtr stream_)
: ISink(stream_->getHeader())
: SinkToStorage(stream_->getHeader())
, stream(std::move(stream_))
{
stream->writePrefix();

View File

@ -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);