2019-12-09 13:12:54 +00:00
|
|
|
#include <Functions/IFunctionImpl.h>
|
2018-09-08 22:04:39 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
2018-09-27 15:55:22 +00:00
|
|
|
#include <DataTypes/DataTypeLowCardinality.h>
|
|
|
|
#include <Columns/ColumnLowCardinality.h>
|
2018-09-08 22:04:39 +00:00
|
|
|
#include <Common/typeid_cast.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class FunctionLowCardinalityKeys: public IFunction
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static constexpr auto name = "lowCardinalityKeys";
|
|
|
|
static FunctionPtr create(const Context &) { return std::make_shared<FunctionLowCardinalityKeys>(); }
|
|
|
|
|
|
|
|
String getName() const override { return name; }
|
|
|
|
|
|
|
|
size_t getNumberOfArguments() const override { return 1; }
|
|
|
|
|
|
|
|
bool useDefaultImplementationForNulls() const override { return false; }
|
|
|
|
bool useDefaultImplementationForConstants() const override { return true; }
|
2018-09-27 15:55:22 +00:00
|
|
|
bool useDefaultImplementationForLowCardinalityColumns() const override { return false; }
|
2018-09-08 22:04:39 +00:00
|
|
|
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
|
|
{
|
2018-09-27 15:55:22 +00:00
|
|
|
auto * type = typeid_cast<const DataTypeLowCardinality *>(arguments[0].get());
|
2018-09-08 22:04:39 +00:00
|
|
|
if (!type)
|
2018-09-27 15:55:22 +00:00
|
|
|
throw Exception("First first argument of function lowCardinalityKeys must be ColumnLowCardinality, but got"
|
2018-09-08 22:04:39 +00:00
|
|
|
+ arguments[0]->getName(), ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
|
|
|
|
|
|
|
|
return type->getDictionaryType();
|
|
|
|
}
|
|
|
|
|
|
|
|
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t /*input_rows_count*/) override
|
|
|
|
{
|
|
|
|
auto arg_num = arguments[0];
|
|
|
|
const auto & arg = block.getByPosition(arg_num);
|
|
|
|
auto & res = block.getByPosition(result);
|
2018-09-27 15:55:22 +00:00
|
|
|
const auto * low_cardinality_column = typeid_cast<const ColumnLowCardinality *>(arg.column.get());
|
|
|
|
res.column = low_cardinality_column->getDictionary().getNestedColumn()->cloneResized(arg.column->size());
|
2018-09-08 22:04:39 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void registerFunctionLowCardinalityKeys(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionLowCardinalityKeys>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|