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
26 lines
766 B
C++
26 lines
766 B
C++
#ifndef __clang_analyzer__ // It's too hard to analyze.
|
|
|
|
#include "GatherUtils.h"
|
|
#include "Selectors.h"
|
|
#include "Algorithms.h"
|
|
|
|
namespace DB::GatherUtils
|
|
{
|
|
struct SliceFromRightConstantOffsetBoundedSelectArraySource
|
|
: public ArraySinkSourceSelector<SliceFromRightConstantOffsetBoundedSelectArraySource>
|
|
{
|
|
template <typename Source, typename Sink>
|
|
static void selectSourceSink(Source && source, Sink && sink, size_t & offset, ssize_t & length)
|
|
{
|
|
sliceFromRightConstantOffsetBounded(source, sink, offset, length);
|
|
}
|
|
};
|
|
|
|
void sliceFromRightConstantOffsetBounded(IArraySource & src, IArraySink & sink, size_t offset, ssize_t length)
|
|
{
|
|
SliceFromRightConstantOffsetBoundedSelectArraySource::select(src, sink, offset, length);
|
|
}
|
|
}
|
|
|
|
#endif
|