mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
21 lines
636 B
C++
21 lines
636 B
C++
|
#include "GatherUtils.h"
|
||
|
#include "GatherUtils_selectors.h"
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
struct SliceFromRightConstantOffsetUnboundedSelectArraySource
|
||
|
: public ArraySinkSourceSelector<SliceFromRightConstantOffsetUnboundedSelectArraySource>
|
||
|
{
|
||
|
template <typename Source, typename Sink>
|
||
|
static void selectSourceSink(Source && source, Sink && sink, size_t & offset)
|
||
|
{
|
||
|
sliceFromRightConstantOffsetUnbounded(source, sink, offset);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
void sliceFromRightConstantOffsetUnbounded(IArraySource & src, IArraySink & sink, size_t offset)
|
||
|
{
|
||
|
SliceFromRightConstantOffsetUnboundedSelectArraySource::select(src, sink, offset);
|
||
|
}
|
||
|
}
|