mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 17:41:59 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
#pragma once
|
|
#include <Processors/ISimpleTransform.h>
|
|
#include <Core/SortDescription.h>
|
|
#include <Interpreters/FillingRow.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** 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.
|
|
*/
|
|
class FillingTransform : public ISimpleTransform
|
|
{
|
|
public:
|
|
FillingTransform(const Block & header_, const SortDescription & sort_description_);
|
|
|
|
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;
|
|
};
|
|
|
|
}
|