2020-10-10 18:37:02 +00:00
|
|
|
#pragma once
|
2019-12-09 13:12:54 +00:00
|
|
|
#include <Functions/IFunctionImpl.h>
|
2018-09-09 20:57:54 +00:00
|
|
|
#include <Functions/GatherUtils/GatherUtils.h>
|
|
|
|
#include <DataTypes/DataTypeArray.h>
|
|
|
|
#include <Columns/ColumnArray.h>
|
|
|
|
#include <Common/typeid_cast.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int LOGICAL_ERROR;
|
|
|
|
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class FunctionArrayPop : public IFunction
|
|
|
|
{
|
|
|
|
public:
|
2019-08-03 11:02:40 +00:00
|
|
|
FunctionArrayPop(bool pop_front_, const char * name_) : pop_front(pop_front_), name(name_) {}
|
2018-09-09 20:57:54 +00:00
|
|
|
|
|
|
|
String getName() const override { return name; }
|
|
|
|
|
|
|
|
bool isVariadic() const override { return false; }
|
|
|
|
size_t getNumberOfArguments() const override { return 1; }
|
|
|
|
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
|
|
{
|
|
|
|
if (arguments[0]->onlyNull())
|
|
|
|
return arguments[0];
|
|
|
|
|
|
|
|
auto array_type = typeid_cast<const DataTypeArray *>(arguments[0].get());
|
|
|
|
if (!array_type)
|
|
|
|
throw Exception("First argument for function " + getName() + " must be an array but it has type "
|
|
|
|
+ arguments[0]->getName() + ".", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
|
|
|
|
|
|
|
|
return arguments[0];
|
|
|
|
}
|
|
|
|
|
2020-10-14 13:09:11 +00:00
|
|
|
void executeImpl(ColumnsWithTypeAndName & block, const ColumnNumbers & arguments, size_t result, size_t input_rows_count) const override
|
2018-09-09 20:57:54 +00:00
|
|
|
{
|
2020-10-10 18:24:57 +00:00
|
|
|
const auto & return_type = block[result].type;
|
2018-09-09 20:57:54 +00:00
|
|
|
|
|
|
|
if (return_type->onlyNull())
|
|
|
|
{
|
2020-10-10 18:24:57 +00:00
|
|
|
block[result].column = return_type->createColumnConstWithDefaultValue(input_rows_count);
|
2018-09-09 20:57:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-10-10 18:24:57 +00:00
|
|
|
const auto & array_column = block[arguments[0]].column;
|
2018-09-09 20:57:54 +00:00
|
|
|
|
|
|
|
std::unique_ptr<GatherUtils::IArraySource> source;
|
|
|
|
|
|
|
|
size_t size = array_column->size();
|
|
|
|
|
|
|
|
if (auto argument_column_array = typeid_cast<const ColumnArray *>(array_column.get()))
|
|
|
|
source = GatherUtils::createArraySource(*argument_column_array, false, size);
|
|
|
|
else
|
|
|
|
throw Exception{"First arguments for function " + getName() + " must be array.", ErrorCodes::LOGICAL_ERROR};
|
|
|
|
|
2020-09-16 12:21:26 +00:00
|
|
|
ColumnArray::MutablePtr sink;
|
2018-09-09 20:57:54 +00:00
|
|
|
|
|
|
|
if (pop_front)
|
2020-09-16 12:21:26 +00:00
|
|
|
sink = GatherUtils::sliceFromLeftConstantOffsetUnbounded(*source, 1);
|
2018-09-09 20:57:54 +00:00
|
|
|
else
|
2020-09-16 12:21:26 +00:00
|
|
|
sink = GatherUtils::sliceFromLeftConstantOffsetBounded(*source, 0, -1);
|
2018-09-09 20:57:54 +00:00
|
|
|
|
2020-10-10 18:24:57 +00:00
|
|
|
block[result].column = std::move(sink);
|
2018-09-09 20:57:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool useDefaultImplementationForConstants() const override { return true; }
|
|
|
|
bool useDefaultImplementationForNulls() const override { return false; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool pop_front;
|
|
|
|
const char * name;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|