ClickHouse/dbms/Functions/GatherUtils/resizeConstantSize.cpp

28 lines
759 B
C++
Raw Normal View History

2020-03-20 03:32:47 +00:00
#ifndef __clang_analyzer__ // It's too hard to analyze.
2019-12-15 06:34:43 +00:00
#include "GatherUtils.h"
#include "Selectors.h"
#include "Algorithms.h"
namespace DB::GatherUtils
{
struct ArrayResizeConstant : public ArrayAndValueSourceSelectorBySink<ArrayResizeConstant>
{
template <typename ArraySource, typename ValueSource, typename Sink>
static void selectArrayAndValueSourceBySink(
ArraySource && array_source, ValueSource && value_source, Sink && sink, ssize_t size)
{
resizeConstantSize(array_source, value_source, sink, size);
}
};
void resizeConstantSize(IArraySource & array_source, IValueSource & value_source, IArraySink & sink, ssize_t size)
{
ArrayResizeConstant::select(sink, array_source, value_source, size);
}
}
2020-03-20 03:32:47 +00:00
#endif