mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
58 lines
2.5 KiB
C++
58 lines
2.5 KiB
C++
#pragma once
|
|
|
|
#include <type_traits>
|
|
|
|
#include <Columns/ColumnArray.h>
|
|
#include <Columns/ColumnsNumber.h>
|
|
|
|
#include "IValueSource.h"
|
|
#include "IArraySource.h"
|
|
#include "IArraySink.h"
|
|
|
|
/** These methods are intended for implementation of functions, that
|
|
* copy ranges from one or more columns to another column.
|
|
*
|
|
* Example:
|
|
* - concatenation of strings and arrays (concat);
|
|
* - extracting slices and elements of strings and arrays (substring, arraySlice, arrayElement);
|
|
* - creating arrays from several columns ([x, y]);
|
|
* - conditional selecting from several string or array columns (if, multiIf);
|
|
* - push and pop elements from array front or back (arrayPushBack, etc);
|
|
* - splitting strings into arrays and joining arrays back;
|
|
* - formatting strings (format).
|
|
*
|
|
* There are various Sources, Sinks and Slices.
|
|
* Source - allows to iterate over a column and obtain Slices.
|
|
* Slice - a reference to elements to copy.
|
|
* Sink - allows to build result column by copying Slices into it.
|
|
*/
|
|
|
|
namespace DB::GatherUtils
|
|
{
|
|
|
|
std::unique_ptr<IArraySource> createArraySource(const ColumnArray & col, bool is_const, size_t total_rows);
|
|
std::unique_ptr<IValueSource> createValueSource(const IColumn & col, bool is_const, size_t total_rows);
|
|
std::unique_ptr<IArraySink> createArraySink(ColumnArray & col, size_t column_size);
|
|
|
|
void concat(const std::vector<std::unique_ptr<IArraySource>> & sources, IArraySink & sink);
|
|
|
|
void sliceFromLeftConstantOffsetUnbounded(IArraySource & src, IArraySink & sink, size_t offset);
|
|
void sliceFromLeftConstantOffsetBounded(IArraySource & src, IArraySink & sink, size_t offset, ssize_t length);
|
|
|
|
void sliceFromRightConstantOffsetUnbounded(IArraySource & src, IArraySink & sink, size_t offset);
|
|
void sliceFromRightConstantOffsetBounded(IArraySource & src, IArraySink & sink, size_t offset, ssize_t length);
|
|
|
|
void sliceDynamicOffsetUnbounded(IArraySource & src, IArraySink & sink, const IColumn & offset_column);
|
|
void sliceDynamicOffsetBounded(IArraySource & src, IArraySink & sink, const IColumn & offset_column, const IColumn & length_column);
|
|
|
|
void sliceHas(IArraySource & first, IArraySource & second, bool all, ColumnUInt8 & result);
|
|
|
|
void push(IArraySource & array_source, IValueSource & value_source, IArraySink & sink, bool push_front);
|
|
|
|
void resizeDynamicSize(IArraySource & array_source, IValueSource & value_source, IArraySink & sink, const IColumn & size_column);
|
|
|
|
void resizeConstantSize(IArraySource & array_source, IValueSource & value_source, IArraySink & sink, ssize_t size);
|
|
|
|
}
|
|
|