2019-06-18 12:54:27 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Storages/MergeTree/IMergedBlockOutputStream.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
/// Writes only those columns that are in `header`
|
|
|
|
class MergedColumnOnlyOutputStream final : public IMergedBlockOutputStream
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/// skip_offsets: used when ALTERing columns if we know that array offsets are not altered.
|
|
|
|
/// Pass empty 'already_written_offset_columns' first time then and pass the same object to subsequent instances of MergedColumnOnlyOutputStream
|
|
|
|
/// if you want to serialize elements of Nested data structure in different instances of MergedColumnOnlyOutputStream.
|
|
|
|
MergedColumnOnlyOutputStream(
|
2019-07-28 11:45:50 +00:00
|
|
|
MergeTreeData & storage_, const Block & header_, const String & part_path_, bool sync_,
|
2019-06-18 12:54:27 +00:00
|
|
|
CompressionCodecPtr default_codec_, bool skip_offsets_,
|
2019-06-24 13:44:44 +00:00
|
|
|
const std::vector<MergeTreeIndexPtr> & indices_to_recalc,
|
2019-06-18 12:54:27 +00:00
|
|
|
WrittenOffsetColumns & already_written_offset_columns,
|
|
|
|
const MergeTreeIndexGranularity & index_granularity_);
|
|
|
|
|
|
|
|
Block getHeader() const override { return header; }
|
|
|
|
void write(const Block & block) override;
|
|
|
|
void writeSuffix() override;
|
|
|
|
MergeTreeData::DataPart::Checksums writeSuffixAndGetChecksums();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Block header;
|
|
|
|
|
|
|
|
bool initialized = false;
|
|
|
|
bool sync;
|
|
|
|
bool skip_offsets;
|
2019-06-24 13:44:44 +00:00
|
|
|
|
2019-06-18 12:54:27 +00:00
|
|
|
/// To correctly write Nested elements column-by-column.
|
|
|
|
WrittenOffsetColumns & already_written_offset_columns;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|