2019-09-02 14:29:51 +00:00
|
|
|
#pragma once
|
|
|
|
#include <Processors/ISimpleTransform.h>
|
|
|
|
#include <Core/SortDescription.h>
|
2019-09-03 10:07:31 +00:00
|
|
|
#include <Interpreters/FillingRow.h>
|
2019-09-02 14:29:51 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2019-09-02 15:22:27 +00:00
|
|
|
/** Implements modifier WITH FILL of ORDER BY clause.
|
|
|
|
* It fills gaps in data stream by rows with missing values in columns with set WITH FILL and deafult values in other columns.
|
|
|
|
* Optionally FROM, TO and STEP values can be specified.
|
|
|
|
*/
|
2019-09-02 14:29:51 +00:00
|
|
|
class FillingTransform : public ISimpleTransform
|
|
|
|
{
|
|
|
|
public:
|
2020-03-09 02:55:28 +00:00
|
|
|
FillingTransform(const Block & header_, const SortDescription & sort_description_);
|
2019-09-02 14:29:51 +00:00
|
|
|
|
|
|
|
String getName() const override { return "FillingTransform"; }
|
|
|
|
|
|
|
|
Status prepare() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void transform(Chunk & Chunk) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void setResultColumns(Chunk & chunk, MutableColumns & fill_columns, MutableColumns & other_columns) const;
|
|
|
|
|
|
|
|
const SortDescription sort_description; /// Contains only rows with WITH FILL.
|
|
|
|
FillingRow filling_row; /// Current row, which is used to fill gaps.
|
|
|
|
FillingRow next_row; /// Row to which we need to generate filling rows.
|
|
|
|
|
|
|
|
using Positions = std::vector<size_t>;
|
|
|
|
Positions fill_column_positions;
|
|
|
|
Positions other_column_positions;
|
|
|
|
bool first = true;
|
|
|
|
bool generate_suffix = false;
|
|
|
|
|
|
|
|
/// Determines should we insert filling row before start generating next rows.
|
|
|
|
bool should_insert_first = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|