mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 11:52:27 +00:00
22 lines
696 B
C++
22 lines
696 B
C++
#include "GatherUtils.h"
|
|
#include "Selectors.h"
|
|
#include "Algorithms.h"
|
|
|
|
namespace DB::GatherUtils
|
|
{
|
|
struct SliceFromLeftConstantOffsetBoundedSelectArraySource
|
|
: public ArraySinkSourceSelector<SliceFromLeftConstantOffsetBoundedSelectArraySource>
|
|
{
|
|
template <typename Source, typename Sink>
|
|
static void selectSourceSink(Source && source, Sink && sink, size_t & offset, ssize_t & length)
|
|
{
|
|
sliceFromLeftConstantOffsetBounded(source, sink, offset, length);
|
|
}
|
|
};
|
|
|
|
void sliceFromLeftConstantOffsetBounded(IArraySource & src, IArraySink & sink, size_t offset, ssize_t length)
|
|
{
|
|
SliceFromLeftConstantOffsetBoundedSelectArraySource::select(src, sink, offset, length);
|
|
}
|
|
}
|