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"
|
2019-06-21 15:31:37 +00:00
|
|
|
#include "Selectors.h"
|
|
|
|
#include "Algorithms.h"
|
2018-01-19 18:47:17 +00:00
|
|
|
|
|
|
|
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
|