2012-12-21 19:48:47 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
|
|
#include <DataTypes/DataTypeArray.h>
|
|
|
|
#include <DataTypes/DataTypeString.h>
|
|
|
|
#include <DataTypes/DataTypeDate.h>
|
|
|
|
#include <DataTypes/DataTypeDateTime.h>
|
|
|
|
#include <DataTypes/DataTypeTuple.h>
|
2017-11-14 00:08:54 +00:00
|
|
|
#include <DataTypes/DataTypeUUID.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
|
2017-07-13 20:58:19 +00:00
|
|
|
#include <Common/typeid_cast.h>
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Columns/ColumnsNumber.h>
|
|
|
|
#include <Columns/ColumnConst.h>
|
|
|
|
#include <Columns/ColumnArray.h>
|
|
|
|
#include <Columns/ColumnString.h>
|
|
|
|
#include <Columns/ColumnTuple.h>
|
|
|
|
|
|
|
|
#include <Interpreters/Context.h>
|
|
|
|
#include <Interpreters/ExternalDictionaries.h>
|
|
|
|
|
|
|
|
#include <Functions/IFunction.h>
|
2017-07-21 06:35:58 +00:00
|
|
|
#include <Functions/FunctionHelpers.h>
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Dictionaries/FlatDictionary.h>
|
|
|
|
#include <Dictionaries/HashedDictionary.h>
|
|
|
|
#include <Dictionaries/CacheDictionary.h>
|
|
|
|
#include <Dictionaries/ComplexKeyHashedDictionary.h>
|
|
|
|
#include <Dictionaries/ComplexKeyCacheDictionary.h>
|
|
|
|
#include <Dictionaries/RangeHashedDictionary.h>
|
2017-05-12 21:23:12 +00:00
|
|
|
#include <Dictionaries/TrieDictionary.h>
|
2012-12-21 19:48:47 +00:00
|
|
|
|
2017-06-06 17:18:32 +00:00
|
|
|
#include <ext/range.h>
|
2015-04-16 06:12:35 +00:00
|
|
|
|
2018-09-13 13:33:44 +00:00
|
|
|
#include <type_traits>
|
2012-12-21 19:48:47 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2016-01-12 02:21:15 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int DICTIONARIES_WAS_NOT_LOADED;
|
|
|
|
extern const int UNSUPPORTED_METHOD;
|
|
|
|
extern const int UNKNOWN_TYPE;
|
2017-06-13 02:06:53 +00:00
|
|
|
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
|
2018-06-05 19:46:49 +00:00
|
|
|
extern const int TYPE_MISMATCH;
|
2016-01-12 02:21:15 +00:00
|
|
|
}
|
|
|
|
|
2017-05-13 22:19:04 +00:00
|
|
|
/** Functions that use plug-ins (external) dictionaries.
|
2015-02-10 14:50:43 +00:00
|
|
|
*
|
2017-05-13 22:19:04 +00:00
|
|
|
* Get the value of the attribute of the specified type.
|
2017-04-01 07:20:54 +00:00
|
|
|
* dictGetType(dictionary, attribute, id),
|
2017-05-13 22:19:04 +00:00
|
|
|
* Type - placeholder for the type name, any numeric and string types are currently supported.
|
|
|
|
* The type must match the actual attribute type with which it was declared in the dictionary structure.
|
2015-02-10 14:50:43 +00:00
|
|
|
*
|
2017-05-13 22:19:04 +00:00
|
|
|
* Get an array of identifiers, consisting of the source and parents chain.
|
2015-02-10 14:50:43 +00:00
|
|
|
* dictGetHierarchy(dictionary, id).
|
|
|
|
*
|
2017-05-13 22:19:04 +00:00
|
|
|
* Is the first identifier the child of the second.
|
2015-02-10 14:50:43 +00:00
|
|
|
* dictIsIn(dictionary, child_id, parent_id).
|
2012-12-21 19:48:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2015-11-19 13:15:02 +00:00
|
|
|
class FunctionDictHas final : public IFunction
|
|
|
|
{
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
static constexpr auto name = "dictHas";
|
2015-11-19 13:15:02 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
static FunctionPtr create(const Context & context)
|
|
|
|
{
|
|
|
|
return std::make_shared<FunctionDictHas>(context.getExternalDictionaries());
|
|
|
|
}
|
2015-11-19 13:15:02 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
FunctionDictHas(const ExternalDictionaries & dictionaries) : dictionaries(dictionaries) {}
|
2015-11-19 13:15:02 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
String getName() const override { return name; }
|
2015-11-19 13:15:02 +00:00
|
|
|
|
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
size_t getNumberOfArguments() const override { return 2; }
|
|
|
|
|
2018-03-16 01:22:02 +00:00
|
|
|
bool useDefaultImplementationForConstants() const final { return true; }
|
|
|
|
ColumnNumbers getArgumentsThatAreAlwaysConstant() const final { return {0}; }
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
|
|
{
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!isString(arguments[0]))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[0]->getName() + " of first argument of function " + getName()
|
|
|
|
+ ", expected a string.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!WhichDataType(arguments[1]).isUInt64() &&
|
|
|
|
!isTuple(arguments[1]))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[1]->getName() + " of second argument of function " + getName()
|
|
|
|
+ ", must be UInt64 or tuple(...).", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return std::make_shared<DataTypeUInt8>();
|
|
|
|
}
|
|
|
|
|
2018-08-08 11:26:18 +00:00
|
|
|
bool isDeterministic() const override { return false; }
|
2018-02-21 17:05:21 +00:00
|
|
|
|
2018-04-24 07:16:39 +00:00
|
|
|
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t input_rows_count) override
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto dict_name_col = checkAndGetColumnConst<ColumnString>(block.getByPosition(arguments[0]).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!dict_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"First argument of function " + getName() + " must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-03-16 03:13:13 +00:00
|
|
|
/** Do not require existence of the dictionary if the function is called for empty block.
|
|
|
|
* This is needed to allow successful query analysis on a server,
|
|
|
|
* that is the initiator of a distributed query,
|
|
|
|
* in the case when the function will be invoked for real data only at the remote servers.
|
|
|
|
* This feature is controversial and implemented specially
|
|
|
|
* for backward compatibility with the case in Yandex Banner System.
|
|
|
|
*/
|
2018-09-14 18:55:12 +00:00
|
|
|
if (input_rows_count == 0)
|
2018-03-16 03:13:13 +00:00
|
|
|
{
|
|
|
|
auto & elem = block.getByPosition(result);
|
|
|
|
elem.column = elem.type->createColumn();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
auto dict = dictionaries.getDictionary(dict_name_col->getValue<String>());
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto dict_ptr = dict.get();
|
|
|
|
|
|
|
|
if (!executeDispatchSimple<FlatDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatchSimple<HashedDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatchSimple<CacheDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatchComplex<ComplexKeyHashedDictionary>(block, arguments, result, dict_ptr) &&
|
2017-05-12 21:23:12 +00:00
|
|
|
!executeDispatchComplex<ComplexKeyCacheDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatchComplex<TrieDictionary>(block, arguments, result, dict_ptr))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Unsupported dictionary type " + dict_ptr->getTypeName(), ErrorCodes::UNKNOWN_TYPE};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
bool executeDispatchSimple(
|
|
|
|
Block & block, const ColumnNumbers & arguments, const size_t result, const IDictionaryBase * dictionary)
|
|
|
|
{
|
|
|
|
const auto dict = typeid_cast<const DictionaryType *>(dictionary);
|
|
|
|
if (!dict)
|
|
|
|
return false;
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto id_col_untyped = block.getByPosition(arguments[1]).column.get();
|
|
|
|
if (const auto id_col = checkAndGetColumn<ColumnUInt64>(id_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
const auto & ids = id_col->getData();
|
|
|
|
|
2017-12-16 05:21:04 +00:00
|
|
|
auto out = ColumnUInt8::create(ext::size(ids));
|
2017-04-01 07:20:54 +00:00
|
|
|
dict->has(ids, out->getData());
|
2017-12-16 05:21:04 +00:00
|
|
|
block.getByPosition(result).column = std::move(out);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Second argument of function " + getName() + " must be UInt64", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
bool executeDispatchComplex(
|
|
|
|
Block & block, const ColumnNumbers & arguments, const size_t result, const IDictionaryBase * dictionary)
|
|
|
|
{
|
|
|
|
const auto dict = typeid_cast<const DictionaryType *>(dictionary);
|
|
|
|
if (!dict)
|
|
|
|
return false;
|
|
|
|
|
2017-12-13 20:40:03 +00:00
|
|
|
const ColumnWithTypeAndName & key_col_with_type = block.getByPosition(arguments[1]);
|
2018-03-16 01:22:02 +00:00
|
|
|
const ColumnPtr & key_col = key_col_with_type.column;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-12-13 20:40:03 +00:00
|
|
|
if (checkColumn<ColumnTuple>(key_col.get()))
|
|
|
|
{
|
|
|
|
const auto & key_columns = static_cast<const ColumnTuple &>(*key_col).getColumns();
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto & key_types = static_cast<const DataTypeTuple &>(*key_col_with_type.type).getElements();
|
|
|
|
|
2017-12-16 05:21:04 +00:00
|
|
|
auto out = ColumnUInt8::create(key_col_with_type.column->size());
|
2017-04-01 07:20:54 +00:00
|
|
|
dict->has(key_columns, key_types, out->getData());
|
2017-12-16 05:21:04 +00:00
|
|
|
block.getByPosition(result).column = std::move(out);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Second argument of function " + getName() + " must be " + dict->getKeyDescription(), ErrorCodes::TYPE_MISMATCH};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ExternalDictionaries & dictionaries;
|
2015-11-19 13:15:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-01-05 16:34:05 +00:00
|
|
|
static bool isDictGetFunctionInjective(const ExternalDictionaries & dictionaries, const Block & sample_block)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (sample_block.columns() != 3 && sample_block.columns() != 4)
|
|
|
|
throw Exception{"Function dictGet... takes 3 or 4 arguments", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH};
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto dict_name_col = checkAndGetColumnConst<ColumnString>(sample_block.getByPosition(0).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!dict_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"First argument of function dictGet... must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto attr_name_col = checkAndGetColumnConst<ColumnString>(sample_block.getByPosition(1).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!attr_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Second argument of function dictGet... must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
return dictionaries.getDictionary(dict_name_col->getValue<String>())->isInjective(attr_name_col->getValue<String>());
|
2017-01-05 16:34:05 +00:00
|
|
|
}
|
|
|
|
|
2018-09-14 19:15:11 +00:00
|
|
|
|
2018-09-14 19:23:03 +00:00
|
|
|
/** For ColumnVector. Either returns a reference to internal data,
|
|
|
|
* or convert it to T type, stores the result in backup_storage and returns a reference to it.
|
|
|
|
*/
|
2018-09-13 13:33:44 +00:00
|
|
|
template <typename T>
|
2018-09-18 16:12:23 +00:00
|
|
|
static const PaddedPODArray<T> & getColumnDataAsPaddedPODArray(const IColumn & column, PaddedPODArray<T> & backup_storage);
|
2017-01-05 16:34:05 +00:00
|
|
|
|
2018-09-14 19:15:11 +00:00
|
|
|
|
2015-05-13 16:11:07 +00:00
|
|
|
class FunctionDictGetString final : public IFunction
|
2015-01-21 11:39:48 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
static constexpr auto name = "dictGetString";
|
2015-01-21 11:39:48 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
static FunctionPtr create(const Context & context)
|
|
|
|
{
|
|
|
|
return std::make_shared<FunctionDictGetString>(context.getExternalDictionaries());
|
|
|
|
}
|
2015-01-21 11:39:48 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
FunctionDictGetString(const ExternalDictionaries & dictionaries) : dictionaries(dictionaries) {}
|
2015-01-21 11:39:48 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
String getName() const override { return name; }
|
2015-01-21 11:39:48 +00:00
|
|
|
|
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
bool isVariadic() const override { return true; }
|
|
|
|
size_t getNumberOfArguments() const override { return 0; }
|
|
|
|
|
2018-03-16 03:03:17 +00:00
|
|
|
bool useDefaultImplementationForConstants() const final { return true; }
|
|
|
|
ColumnNumbers getArgumentsThatAreAlwaysConstant() const final { return {0, 1}; }
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
bool isInjective(const Block & sample_block) override
|
|
|
|
{
|
|
|
|
return isDictGetFunctionInjective(dictionaries, sample_block);
|
|
|
|
}
|
|
|
|
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
|
|
{
|
|
|
|
if (arguments.size() != 3 && arguments.size() != 4)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Number of arguments for function " + getName() + " doesn't match: passed "
|
|
|
|
+ toString(arguments.size()) + ", should be 3 or 4.", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!isString(arguments[0]))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[0]->getName() + " of first argument of function " + getName()
|
|
|
|
+ ", expected a string.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!isString(arguments[1]))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[1]->getName() + " of second argument of function " + getName()
|
|
|
|
+ ", expected a string.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!WhichDataType(arguments[2]).isUInt64() &&
|
|
|
|
!isTuple(arguments[2]))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[2]->getName() + " of third argument of function " + getName()
|
|
|
|
+ ", must be UInt64 or tuple(...).", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2018-03-16 03:03:17 +00:00
|
|
|
/// This is for the case of range dictionaries.
|
2018-09-13 13:33:44 +00:00
|
|
|
if (arguments.size() == 4 && !arguments[3]->isValueRepresentedByInteger())
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2018-09-13 13:33:44 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[3]->getName() +
|
|
|
|
" of fourth argument of function " + getName() +
|
|
|
|
" must be convertible to Int64.", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return std::make_shared<DataTypeString>();
|
|
|
|
}
|
|
|
|
|
2018-08-08 11:26:18 +00:00
|
|
|
bool isDeterministic() const override { return false; }
|
2018-02-21 17:05:21 +00:00
|
|
|
|
2018-04-24 07:16:39 +00:00
|
|
|
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t input_rows_count) override
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto dict_name_col = checkAndGetColumnConst<ColumnString>(block.getByPosition(arguments[0]).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!dict_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"First argument of function " + getName() + " must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-04-24 07:16:39 +00:00
|
|
|
if (input_rows_count == 0)
|
2018-03-16 03:13:13 +00:00
|
|
|
{
|
|
|
|
auto & elem = block.getByPosition(result);
|
|
|
|
elem.column = elem.type->createColumn();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
auto dict = dictionaries.getDictionary(dict_name_col->getValue<String>());
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto dict_ptr = dict.get();
|
|
|
|
|
|
|
|
if (!executeDispatch<FlatDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatch<HashedDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatch<CacheDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatchComplex<ComplexKeyHashedDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatchComplex<ComplexKeyCacheDictionary>(block, arguments, result, dict_ptr) &&
|
2017-05-12 21:23:12 +00:00
|
|
|
!executeDispatchComplex<TrieDictionary>(block, arguments, result, dict_ptr) &&
|
2017-04-01 07:20:54 +00:00
|
|
|
!executeDispatchRange<RangeHashedDictionary>(block, arguments, result, dict_ptr))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Unsupported dictionary type " + dict_ptr->getTypeName(), ErrorCodes::UNKNOWN_TYPE};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
bool executeDispatch(
|
|
|
|
Block & block, const ColumnNumbers & arguments, const size_t result, const IDictionaryBase * dictionary)
|
|
|
|
{
|
|
|
|
const auto dict = typeid_cast<const DictionaryType *>(dictionary);
|
|
|
|
if (!dict)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (arguments.size() != 3)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Function " + getName() + " for dictionary of type " + dict->getTypeName() +
|
|
|
|
" requires exactly 3 arguments", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto attr_name_col = checkAndGetColumnConst<ColumnString>(block.getByPosition(arguments[1]).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!attr_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Second argument of function " + getName() + " must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
String attr_name = attr_name_col->getValue<String>();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto id_col_untyped = block.getByPosition(arguments[2]).column.get();
|
|
|
|
if (const auto id_col = checkAndGetColumn<ColumnUInt64>(id_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-12-16 05:21:04 +00:00
|
|
|
auto out = ColumnString::create();
|
2017-04-01 07:20:54 +00:00
|
|
|
dict->getString(attr_name, id_col->getData(), out.get());
|
2017-12-16 05:21:04 +00:00
|
|
|
block.getByPosition(result).column = std::move(out);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Third argument of function " + getName() + " must be UInt64", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
bool executeDispatchComplex(
|
|
|
|
Block & block, const ColumnNumbers & arguments, const size_t result, const IDictionaryBase * dictionary)
|
|
|
|
{
|
|
|
|
const auto dict = typeid_cast<const DictionaryType *>(dictionary);
|
|
|
|
if (!dict)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (arguments.size() != 3)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Function " + getName() + " for dictionary of type " + dict->getTypeName() +
|
|
|
|
" requires exactly 3 arguments", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto attr_name_col = checkAndGetColumnConst<ColumnString>(block.getByPosition(arguments[1]).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!attr_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Second argument of function " + getName() + " must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
String attr_name = attr_name_col->getValue<String>();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-12-13 20:40:03 +00:00
|
|
|
const ColumnWithTypeAndName & key_col_with_type = block.getByPosition(arguments[2]);
|
|
|
|
ColumnPtr key_col = key_col_with_type.column;
|
|
|
|
|
|
|
|
/// Functions in external dictionaries only support full-value (not constant) columns with keys.
|
2017-12-15 03:47:43 +00:00
|
|
|
if (ColumnPtr key_col_materialized = key_col_with_type.column->convertToFullColumnIfConst())
|
2017-12-13 20:40:03 +00:00
|
|
|
key_col = key_col_materialized;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-12-13 20:40:03 +00:00
|
|
|
if (checkColumn<ColumnTuple>(key_col.get()))
|
|
|
|
{
|
|
|
|
const auto & key_columns = static_cast<const ColumnTuple &>(*key_col).getColumns();
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto & key_types = static_cast<const DataTypeTuple &>(*key_col_with_type.type).getElements();
|
|
|
|
|
2017-12-16 05:21:04 +00:00
|
|
|
auto out = ColumnString::create();
|
2017-04-01 07:20:54 +00:00
|
|
|
dict->getString(attr_name, key_columns, key_types, out.get());
|
2017-12-16 05:21:04 +00:00
|
|
|
block.getByPosition(result).column = std::move(out);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Third argument of function " + getName() + " must be " + dict->getKeyDescription(), ErrorCodes::TYPE_MISMATCH};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
bool executeDispatchRange(
|
|
|
|
Block & block, const ColumnNumbers & arguments, const size_t result, const IDictionaryBase * dictionary)
|
|
|
|
{
|
|
|
|
const auto dict = typeid_cast<const DictionaryType *>(dictionary);
|
|
|
|
if (!dict)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (arguments.size() != 4)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Function " + getName() + " for dictionary of type " + dict->getTypeName() +
|
|
|
|
" requires exactly 4 arguments", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto attr_name_col = checkAndGetColumnConst<ColumnString>(block.getByPosition(arguments[1]).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!attr_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Second argument of function " + getName() + " must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
String attr_name = attr_name_col->getValue<String>();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-14 19:23:03 +00:00
|
|
|
const auto & id_col_untyped = block.getByPosition(arguments[2]).column;
|
|
|
|
const auto & range_col_untyped = block.getByPosition(arguments[3]).column;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-13 13:33:44 +00:00
|
|
|
PaddedPODArray<UInt64> id_col_values_storage;
|
|
|
|
PaddedPODArray<Int64> range_col_values_storage;
|
2018-09-14 19:23:03 +00:00
|
|
|
const auto & id_col_values = getColumnDataAsPaddedPODArray(*id_col_untyped, id_col_values_storage);
|
|
|
|
const auto & range_col_values = getColumnDataAsPaddedPODArray(*range_col_untyped, range_col_values_storage);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-13 13:33:44 +00:00
|
|
|
auto out = ColumnString::create();
|
2018-09-14 19:23:03 +00:00
|
|
|
dict->getString(attr_name, id_col_values, range_col_values, out.get());
|
2018-09-13 13:33:44 +00:00
|
|
|
block.getByPosition(result).column = std::move(out);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-13 13:33:44 +00:00
|
|
|
return true;
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const ExternalDictionaries & dictionaries;
|
2015-01-21 11:39:48 +00:00
|
|
|
};
|
|
|
|
|
2015-01-22 14:32:38 +00:00
|
|
|
|
2015-11-06 14:49:54 +00:00
|
|
|
class FunctionDictGetStringOrDefault final : public IFunction
|
|
|
|
{
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
static constexpr auto name = "dictGetStringOrDefault";
|
2015-11-06 14:49:54 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
static FunctionPtr create(const Context & context)
|
|
|
|
{
|
|
|
|
return std::make_shared<FunctionDictGetStringOrDefault>(context.getExternalDictionaries());
|
|
|
|
}
|
2015-11-06 14:49:54 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
FunctionDictGetStringOrDefault(const ExternalDictionaries & dictionaries) : dictionaries(dictionaries) {}
|
2015-11-06 14:49:54 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
String getName() const override { return name; }
|
2015-11-06 14:49:54 +00:00
|
|
|
|
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
size_t getNumberOfArguments() const override { return 4; }
|
|
|
|
|
2018-03-16 03:03:17 +00:00
|
|
|
bool useDefaultImplementationForConstants() const final { return true; }
|
|
|
|
ColumnNumbers getArgumentsThatAreAlwaysConstant() const final { return {0, 1}; }
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
|
|
{
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!isString(arguments[0]))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[0]->getName() + " of first argument of function " + getName() +
|
|
|
|
", expected a string.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!isString(arguments[1]))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[1]->getName() + " of second argument of function " + getName() +
|
|
|
|
", expected a string.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!WhichDataType(arguments[2]).isUInt64() &&
|
|
|
|
!isTuple(arguments[2]))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[2]->getName() + " of third argument of function " + getName()
|
|
|
|
+ ", must be UInt64 or tuple(...).", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!isString(arguments[3]))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[3]->getName() + " of fourth argument of function " + getName() +
|
|
|
|
", must be String.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return std::make_shared<DataTypeString>();
|
|
|
|
}
|
|
|
|
|
2018-08-08 11:26:18 +00:00
|
|
|
bool isDeterministic() const override { return false; }
|
2018-02-21 17:05:21 +00:00
|
|
|
|
2018-04-24 07:16:39 +00:00
|
|
|
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t input_rows_count) override
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto dict_name_col = checkAndGetColumnConst<ColumnString>(block.getByPosition(arguments[0]).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!dict_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"First argument of function " + getName() + " must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-04-24 07:16:39 +00:00
|
|
|
if (input_rows_count == 0)
|
2018-03-16 03:13:13 +00:00
|
|
|
{
|
|
|
|
auto & elem = block.getByPosition(result);
|
|
|
|
elem.column = elem.type->createColumn();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
auto dict = dictionaries.getDictionary(dict_name_col->getValue<String>());
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto dict_ptr = dict.get();
|
|
|
|
|
|
|
|
if (!executeDispatch<FlatDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatch<HashedDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatch<CacheDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatchComplex<ComplexKeyHashedDictionary>(block, arguments, result, dict_ptr) &&
|
2017-05-12 21:23:12 +00:00
|
|
|
!executeDispatchComplex<ComplexKeyCacheDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatchComplex<TrieDictionary>(block, arguments, result, dict_ptr))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Unsupported dictionary type " + dict_ptr->getTypeName(), ErrorCodes::UNKNOWN_TYPE};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
bool executeDispatch(
|
|
|
|
Block & block, const ColumnNumbers & arguments, const size_t result, const IDictionaryBase * dictionary)
|
|
|
|
{
|
|
|
|
const auto dict = typeid_cast<const DictionaryType *>(dictionary);
|
|
|
|
if (!dict)
|
|
|
|
return false;
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto attr_name_col = checkAndGetColumnConst<ColumnString>(block.getByPosition(arguments[1]).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!attr_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Second argument of function " + getName() + " must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
String attr_name = attr_name_col->getValue<String>();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto id_col_untyped = block.getByPosition(arguments[2]).column.get();
|
|
|
|
if (const auto id_col = checkAndGetColumn<ColumnUInt64>(id_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
executeDispatch(block, arguments, result, dict, attr_name, id_col);
|
2017-07-21 06:35:58 +00:00
|
|
|
else if (const auto id_col = checkAndGetColumnConst<ColumnVector<UInt64>>(id_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
executeDispatch(block, arguments, result, dict, attr_name, id_col);
|
|
|
|
else
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Third argument of function " + getName() + " must be UInt64", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
void executeDispatch(
|
|
|
|
Block & block, const ColumnNumbers & arguments, const size_t result, const DictionaryType * dictionary,
|
|
|
|
const std::string & attr_name, const ColumnUInt64 * id_col)
|
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto default_col_untyped = block.getByPosition(arguments[3]).column.get();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
if (const auto default_col = checkAndGetColumn<ColumnString>(default_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
/// vector ids, vector defaults
|
2017-12-16 05:21:04 +00:00
|
|
|
auto out = ColumnString::create();
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto & ids = id_col->getData();
|
|
|
|
dictionary->getString(attr_name, ids, default_col, out.get());
|
2017-12-16 05:21:04 +00:00
|
|
|
block.getByPosition(result).column = std::move(out);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2017-07-21 06:35:58 +00:00
|
|
|
else if (const auto default_col = checkAndGetColumnConstStringOrFixedString(default_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
/// vector ids, const defaults
|
2017-12-16 05:21:04 +00:00
|
|
|
auto out = ColumnString::create();
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto & ids = id_col->getData();
|
2017-07-21 06:35:58 +00:00
|
|
|
String def = default_col->getValue<String>();
|
2017-04-01 07:20:54 +00:00
|
|
|
dictionary->getString(attr_name, ids, def, out.get());
|
2017-12-16 05:21:04 +00:00
|
|
|
block.getByPosition(result).column = std::move(out);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Fourth argument of function " + getName() + " must be String", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
void executeDispatch(
|
|
|
|
Block & block, const ColumnNumbers & arguments, const size_t result, const DictionaryType * dictionary,
|
2017-07-21 06:35:58 +00:00
|
|
|
const std::string & attr_name, const ColumnConst * id_col)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto default_col_untyped = block.getByPosition(arguments[3]).column.get();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
if (const auto default_col = checkAndGetColumn<ColumnString>(default_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
/// const ids, vector defaults
|
2018-11-11 16:07:28 +00:00
|
|
|
const PaddedPODArray<UInt64> ids(1, id_col->getValue<UInt64>());
|
|
|
|
PaddedPODArray<UInt8> flags(1);
|
|
|
|
dictionary->has(ids, flags);
|
|
|
|
if (flags.front())
|
|
|
|
{
|
|
|
|
auto out = ColumnString::create();
|
|
|
|
dictionary->getString(attr_name, ids, String(), out.get());
|
|
|
|
block.getByPosition(result).column = DataTypeString().createColumnConst(id_col->size(), out->getDataAt(0).toString());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
block.getByPosition(result).column = block.getByPosition(arguments[3]).column; // reuse the default column
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2017-07-21 06:35:58 +00:00
|
|
|
else if (const auto default_col = checkAndGetColumnConstStringOrFixedString(default_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
/// const ids, const defaults
|
2017-07-21 06:35:58 +00:00
|
|
|
const PaddedPODArray<UInt64> ids(1, id_col->getValue<UInt64>());
|
2017-12-16 05:34:07 +00:00
|
|
|
auto out = ColumnString::create();
|
2017-07-21 06:35:58 +00:00
|
|
|
String def = default_col->getValue<String>();
|
2017-04-01 07:20:54 +00:00
|
|
|
dictionary->getString(attr_name, ids, def, out.get());
|
2017-12-10 22:44:04 +00:00
|
|
|
block.getByPosition(result).column = DataTypeString().createColumnConst(id_col->size(), out->getDataAt(0).toString());
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Fourth argument of function " + getName() + " must be String", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
bool executeDispatchComplex(
|
|
|
|
Block & block, const ColumnNumbers & arguments, const size_t result, const IDictionaryBase * dictionary)
|
|
|
|
{
|
|
|
|
const auto dict = typeid_cast<const DictionaryType *>(dictionary);
|
|
|
|
if (!dict)
|
|
|
|
return false;
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto attr_name_col = checkAndGetColumnConst<ColumnString>(block.getByPosition(arguments[1]).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!attr_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Second argument of function " + getName() + " must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
String attr_name = attr_name_col->getValue<String>();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-12-13 20:40:03 +00:00
|
|
|
const ColumnWithTypeAndName & key_col_with_type = block.getByPosition(arguments[2]);
|
|
|
|
ColumnPtr key_col = key_col_with_type.column;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-12-13 20:40:03 +00:00
|
|
|
/// Functions in external dictionaries only support full-value (not constant) columns with keys.
|
2017-12-15 03:47:43 +00:00
|
|
|
if (ColumnPtr key_col_materialized = key_col_with_type.column->convertToFullColumnIfConst())
|
2017-12-13 20:40:03 +00:00
|
|
|
key_col = key_col_materialized;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-12-13 20:40:03 +00:00
|
|
|
const auto & key_columns = typeid_cast<const ColumnTuple &>(*key_col).getColumns();
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto & key_types = static_cast<const DataTypeTuple &>(*key_col_with_type.type).getElements();
|
|
|
|
|
2017-12-16 05:21:04 +00:00
|
|
|
auto out = ColumnString::create();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto default_col_untyped = block.getByPosition(arguments[3]).column.get();
|
|
|
|
if (const auto default_col = checkAndGetColumn<ColumnString>(default_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
dict->getString(attr_name, key_columns, key_types, default_col, out.get());
|
|
|
|
}
|
2017-07-21 06:35:58 +00:00
|
|
|
else if (const auto default_col = checkAndGetColumnConstStringOrFixedString(default_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
String def = default_col->getValue<String>();
|
2017-04-01 07:20:54 +00:00
|
|
|
dict->getString(attr_name, key_columns, key_types, def, out.get());
|
|
|
|
}
|
|
|
|
else
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Fourth argument of function " + getName() + " must be String", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-12-16 05:21:04 +00:00
|
|
|
block.getByPosition(result).column = std::move(out);
|
2017-04-01 07:20:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ExternalDictionaries & dictionaries;
|
2015-11-06 14:49:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-01-28 15:02:05 +00:00
|
|
|
template <typename DataType> struct DictGetTraits;
|
|
|
|
#define DECLARE_DICT_GET_TRAITS(TYPE, DATA_TYPE) \
|
|
|
|
template <> struct DictGetTraits<DATA_TYPE>\
|
|
|
|
{\
|
2017-04-01 07:20:54 +00:00
|
|
|
template <typename DictionaryType>\
|
|
|
|
static void get(\
|
|
|
|
const DictionaryType * dict, const std::string & name, const PaddedPODArray<UInt64> & ids,\
|
|
|
|
PaddedPODArray<TYPE> & out)\
|
|
|
|
{\
|
|
|
|
dict->get##TYPE(name, ids, out);\
|
|
|
|
}\
|
|
|
|
template <typename DictionaryType>\
|
|
|
|
static void get(\
|
2017-05-25 19:52:05 +00:00
|
|
|
const DictionaryType * dict, const std::string & name, const Columns & key_columns,\
|
2017-04-01 07:20:54 +00:00
|
|
|
const DataTypes & key_types, PaddedPODArray<TYPE> & out)\
|
|
|
|
{\
|
|
|
|
dict->get##TYPE(name, key_columns, key_types, out);\
|
|
|
|
}\
|
|
|
|
template <typename DictionaryType>\
|
|
|
|
static void get(\
|
|
|
|
const DictionaryType * dict, const std::string & name, const PaddedPODArray<UInt64> & ids,\
|
2018-09-13 13:33:44 +00:00
|
|
|
const PaddedPODArray<Int64> & dates, PaddedPODArray<TYPE> & out)\
|
2017-04-01 07:20:54 +00:00
|
|
|
{\
|
|
|
|
dict->get##TYPE(name, ids, dates, out);\
|
|
|
|
}\
|
|
|
|
template <typename DictionaryType, typename DefaultsType>\
|
|
|
|
static void getOrDefault(\
|
|
|
|
const DictionaryType * dict, const std::string & name, const PaddedPODArray<UInt64> & ids,\
|
|
|
|
const DefaultsType & def, PaddedPODArray<TYPE> & out)\
|
|
|
|
{\
|
|
|
|
dict->get##TYPE(name, ids, def, out);\
|
|
|
|
}\
|
|
|
|
template <typename DictionaryType, typename DefaultsType>\
|
|
|
|
static void getOrDefault(\
|
2017-05-25 19:52:05 +00:00
|
|
|
const DictionaryType * dict, const std::string & name, const Columns & key_columns,\
|
2017-04-01 07:20:54 +00:00
|
|
|
const DataTypes & key_types, const DefaultsType & def, PaddedPODArray<TYPE> & out)\
|
|
|
|
{\
|
|
|
|
dict->get##TYPE(name, key_columns, key_types, def, out);\
|
|
|
|
}\
|
2015-01-28 15:02:05 +00:00
|
|
|
};
|
|
|
|
DECLARE_DICT_GET_TRAITS(UInt8, DataTypeUInt8)
|
|
|
|
DECLARE_DICT_GET_TRAITS(UInt16, DataTypeUInt16)
|
|
|
|
DECLARE_DICT_GET_TRAITS(UInt32, DataTypeUInt32)
|
|
|
|
DECLARE_DICT_GET_TRAITS(UInt64, DataTypeUInt64)
|
|
|
|
DECLARE_DICT_GET_TRAITS(Int8, DataTypeInt8)
|
|
|
|
DECLARE_DICT_GET_TRAITS(Int16, DataTypeInt16)
|
|
|
|
DECLARE_DICT_GET_TRAITS(Int32, DataTypeInt32)
|
|
|
|
DECLARE_DICT_GET_TRAITS(Int64, DataTypeInt64)
|
|
|
|
DECLARE_DICT_GET_TRAITS(Float32, DataTypeFloat32)
|
|
|
|
DECLARE_DICT_GET_TRAITS(Float64, DataTypeFloat64)
|
2015-03-20 15:21:29 +00:00
|
|
|
DECLARE_DICT_GET_TRAITS(UInt16, DataTypeDate)
|
|
|
|
DECLARE_DICT_GET_TRAITS(UInt32, DataTypeDateTime)
|
2017-11-14 00:08:54 +00:00
|
|
|
DECLARE_DICT_GET_TRAITS(UInt128, DataTypeUUID)
|
2015-01-28 15:02:05 +00:00
|
|
|
#undef DECLARE_DICT_GET_TRAITS
|
|
|
|
|
2017-11-22 21:09:23 +00:00
|
|
|
|
|
|
|
template <typename DataType, typename Name>
|
2015-01-28 15:02:05 +00:00
|
|
|
class FunctionDictGet final : public IFunction
|
2015-01-22 14:32:38 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
using Type = typename DataType::FieldType;
|
2015-01-28 15:02:05 +00:00
|
|
|
|
2015-01-22 14:32:38 +00:00
|
|
|
public:
|
2017-11-22 21:09:23 +00:00
|
|
|
static constexpr auto name = Name::name;
|
2015-01-22 14:32:38 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
static FunctionPtr create(const Context & context)
|
|
|
|
{
|
|
|
|
return std::make_shared<FunctionDictGet>(context.getExternalDictionaries());
|
|
|
|
}
|
2015-01-22 14:32:38 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
FunctionDictGet(const ExternalDictionaries & dictionaries) : dictionaries(dictionaries) {}
|
2015-01-22 14:32:38 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
String getName() const override { return name; }
|
2015-01-22 14:32:38 +00:00
|
|
|
|
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
bool isVariadic() const override { return true; }
|
|
|
|
size_t getNumberOfArguments() const override { return 0; }
|
|
|
|
|
2018-03-16 03:03:17 +00:00
|
|
|
bool useDefaultImplementationForConstants() const final { return true; }
|
|
|
|
ColumnNumbers getArgumentsThatAreAlwaysConstant() const final { return {0, 1}; }
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
bool isInjective(const Block & sample_block) override
|
|
|
|
{
|
|
|
|
return isDictGetFunctionInjective(dictionaries, sample_block);
|
|
|
|
}
|
|
|
|
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
|
|
{
|
|
|
|
if (arguments.size() != 3 && arguments.size() != 4)
|
|
|
|
throw Exception{"Function " + getName() + " takes 3 or 4 arguments", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH};
|
|
|
|
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!isString(arguments[0]))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[0]->getName() + " of first argument of function " + getName()
|
|
|
|
+ ", expected a string.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!isString(arguments[1]))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[1]->getName() + " of second argument of function " + getName()
|
|
|
|
+ ", expected a string.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!WhichDataType(arguments[2]).isUInt64() &&
|
|
|
|
!isTuple(arguments[2]))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[2]->getName() + " of third argument of function " + getName()
|
|
|
|
+ ", must be UInt64 or tuple(...).", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-14 18:55:12 +00:00
|
|
|
if (arguments.size() == 4 )
|
|
|
|
{
|
2018-09-13 13:33:44 +00:00
|
|
|
const auto range_argument = arguments[3].get();
|
|
|
|
if (!(range_argument->isValueRepresentedByInteger() &&
|
|
|
|
range_argument->getSizeOfValueInMemory() <= sizeof(Int64)))
|
|
|
|
throw Exception{"Illegal type " + range_argument->getName() + " of fourth argument of function " + getName()
|
|
|
|
+ ", must be convertible to " + TypeName<Int64>::get() + ".",
|
|
|
|
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return std::make_shared<DataType>();
|
|
|
|
}
|
|
|
|
|
2018-08-08 11:26:18 +00:00
|
|
|
bool isDeterministic() const override { return false; }
|
2018-02-21 17:05:21 +00:00
|
|
|
|
2018-04-24 07:16:39 +00:00
|
|
|
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t input_rows_count) override
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto dict_name_col = checkAndGetColumnConst<ColumnString>(block.getByPosition(arguments[0]).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!dict_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"First argument of function " + getName() + " must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-04-24 07:16:39 +00:00
|
|
|
if (input_rows_count == 0)
|
2018-03-16 03:13:13 +00:00
|
|
|
{
|
|
|
|
auto & elem = block.getByPosition(result);
|
|
|
|
elem.column = elem.type->createColumn();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
auto dict = dictionaries.getDictionary(dict_name_col->getValue<String>());
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto dict_ptr = dict.get();
|
|
|
|
|
|
|
|
if (!executeDispatch<FlatDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatch<HashedDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatch<CacheDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatchComplex<ComplexKeyHashedDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatchComplex<ComplexKeyCacheDictionary>(block, arguments, result, dict_ptr) &&
|
2017-05-12 21:23:12 +00:00
|
|
|
!executeDispatchComplex<TrieDictionary>(block, arguments, result, dict_ptr) &&
|
2017-04-01 07:20:54 +00:00
|
|
|
!executeDispatchRange<RangeHashedDictionary>(block, arguments, result, dict_ptr))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Unsupported dictionary type " + dict_ptr->getTypeName(), ErrorCodes::UNKNOWN_TYPE};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
bool executeDispatch(Block & block, const ColumnNumbers & arguments, const size_t result,
|
|
|
|
const IDictionaryBase * dictionary)
|
|
|
|
{
|
|
|
|
const auto dict = typeid_cast<const DictionaryType *>(dictionary);
|
|
|
|
if (!dict)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (arguments.size() != 3)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Function " + getName() + " for dictionary of type " + dict->getTypeName() +
|
|
|
|
" requires exactly 3 arguments.", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto attr_name_col = checkAndGetColumnConst<ColumnString>(block.getByPosition(arguments[1]).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!attr_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Second argument of function " + getName() + " must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
String attr_name = attr_name_col->getValue<String>();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto id_col_untyped = block.getByPosition(arguments[2]).column.get();
|
|
|
|
if (const auto id_col = checkAndGetColumn<ColumnUInt64>(id_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-12-16 05:21:04 +00:00
|
|
|
auto out = ColumnVector<Type>::create(id_col->size());
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto & ids = id_col->getData();
|
|
|
|
auto & data = out->getData();
|
|
|
|
DictGetTraits<DataType>::get(dict, attr_name, ids, data);
|
2017-12-16 05:21:04 +00:00
|
|
|
block.getByPosition(result).column = std::move(out);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2017-07-21 06:35:58 +00:00
|
|
|
else if (const auto id_col = checkAndGetColumnConst<ColumnVector<UInt64>>(id_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
const PaddedPODArray<UInt64> ids(1, id_col->getValue<UInt64>());
|
2017-04-01 07:20:54 +00:00
|
|
|
PaddedPODArray<Type> data(1);
|
|
|
|
DictGetTraits<DataType>::get(dict, attr_name, ids, data);
|
2017-12-10 22:44:04 +00:00
|
|
|
block.getByPosition(result).column = DataTypeNumber<Type>().createColumnConst(id_col->size(), toField(data.front()));
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Third argument of function " + getName() + " must be UInt64", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
bool executeDispatchComplex(
|
|
|
|
Block & block, const ColumnNumbers & arguments, const size_t result, const IDictionaryBase * dictionary)
|
|
|
|
{
|
|
|
|
const auto dict = typeid_cast<const DictionaryType *>(dictionary);
|
|
|
|
if (!dict)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (arguments.size() != 3)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Function " + getName() + " for dictionary of type " + dict->getTypeName() +
|
|
|
|
" requires exactly 3 arguments", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto attr_name_col = checkAndGetColumnConst<ColumnString>(block.getByPosition(arguments[1]).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!attr_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Second argument of function " + getName() + " must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
String attr_name = attr_name_col->getValue<String>();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-12-13 20:40:03 +00:00
|
|
|
const ColumnWithTypeAndName & key_col_with_type = block.getByPosition(arguments[2]);
|
|
|
|
ColumnPtr key_col = key_col_with_type.column;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-12-13 20:40:03 +00:00
|
|
|
/// Functions in external dictionaries only support full-value (not constant) columns with keys.
|
2017-12-15 03:47:43 +00:00
|
|
|
if (ColumnPtr key_col_materialized = key_col_with_type.column->convertToFullColumnIfConst())
|
2017-12-13 20:40:03 +00:00
|
|
|
key_col = key_col_materialized;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-12-13 20:40:03 +00:00
|
|
|
if (checkColumn<ColumnTuple>(key_col.get()))
|
|
|
|
{
|
|
|
|
const auto & key_columns = static_cast<const ColumnTuple &>(*key_col).getColumns();
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto & key_types = static_cast<const DataTypeTuple &>(*key_col_with_type.type).getElements();
|
|
|
|
|
2017-12-16 05:21:04 +00:00
|
|
|
auto out = ColumnVector<Type>::create(key_columns.front()->size());
|
2017-04-01 07:20:54 +00:00
|
|
|
auto & data = out->getData();
|
|
|
|
DictGetTraits<DataType>::get(dict, attr_name, key_columns, key_types, data);
|
2017-12-16 05:21:04 +00:00
|
|
|
block.getByPosition(result).column = std::move(out);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Third argument of function " + getName() + " must be " + dict->getKeyDescription(), ErrorCodes::TYPE_MISMATCH};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
bool executeDispatchRange(
|
|
|
|
Block & block, const ColumnNumbers & arguments, const size_t result, const IDictionaryBase * dictionary)
|
|
|
|
{
|
|
|
|
const auto dict = typeid_cast<const DictionaryType *>(dictionary);
|
|
|
|
if (!dict)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (arguments.size() != 4)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Function " + getName() + " for dictionary of type " + dict->getTypeName() +
|
|
|
|
" requires exactly 4 arguments", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto attr_name_col = checkAndGetColumnConst<ColumnString>(block.getByPosition(arguments[1]).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!attr_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Second argument of function " + getName() + " must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
String attr_name = attr_name_col->getValue<String>();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-14 19:23:03 +00:00
|
|
|
const auto & id_col_untyped = block.getByPosition(arguments[2]).column;
|
|
|
|
const auto & range_col_untyped = block.getByPosition(arguments[3]).column;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-13 13:33:44 +00:00
|
|
|
PaddedPODArray<UInt64> id_col_values_storage;
|
|
|
|
PaddedPODArray<Int64> range_col_values_storage;
|
2018-09-14 19:23:03 +00:00
|
|
|
const auto & id_col_values = getColumnDataAsPaddedPODArray(*id_col_untyped, id_col_values_storage);
|
|
|
|
const auto & range_col_values = getColumnDataAsPaddedPODArray(*range_col_untyped, range_col_values_storage);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-13 13:33:44 +00:00
|
|
|
auto out = ColumnVector<Type>::create(id_col_untyped->size());
|
|
|
|
auto & data = out->getData();
|
2018-09-14 19:23:03 +00:00
|
|
|
DictGetTraits<DataType>::get(dict, attr_name, id_col_values, range_col_values, data);
|
2018-09-13 13:33:44 +00:00
|
|
|
block.getByPosition(result).column = std::move(out);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-13 13:33:44 +00:00
|
|
|
return true;
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const ExternalDictionaries & dictionaries;
|
2015-01-22 14:32:38 +00:00
|
|
|
};
|
|
|
|
|
2017-11-22 21:09:23 +00:00
|
|
|
struct NameDictGetUInt8 { static constexpr auto name = "dictGetUInt8"; };
|
|
|
|
struct NameDictGetUInt16 { static constexpr auto name = "dictGetUInt16"; };
|
|
|
|
struct NameDictGetUInt32 { static constexpr auto name = "dictGetUInt32"; };
|
|
|
|
struct NameDictGetUInt64 { static constexpr auto name = "dictGetUInt64"; };
|
|
|
|
struct NameDictGetInt8 { static constexpr auto name = "dictGetInt8"; };
|
|
|
|
struct NameDictGetInt16 { static constexpr auto name = "dictGetInt16"; };
|
|
|
|
struct NameDictGetInt32 { static constexpr auto name = "dictGetInt32"; };
|
|
|
|
struct NameDictGetInt64 { static constexpr auto name = "dictGetInt64"; };
|
|
|
|
struct NameDictGetFloat32 { static constexpr auto name = "dictGetFloat32"; };
|
|
|
|
struct NameDictGetFloat64 { static constexpr auto name = "dictGetFloat64"; };
|
|
|
|
struct NameDictGetDate { static constexpr auto name = "dictGetDate"; };
|
|
|
|
struct NameDictGetDateTime { static constexpr auto name = "dictGetDateTime"; };
|
|
|
|
struct NameDictGetUUID { static constexpr auto name = "dictGetUUID"; };
|
|
|
|
|
|
|
|
using FunctionDictGetUInt8 = FunctionDictGet<DataTypeUInt8, NameDictGetUInt8>;
|
|
|
|
using FunctionDictGetUInt16 = FunctionDictGet<DataTypeUInt16, NameDictGetUInt16>;
|
|
|
|
using FunctionDictGetUInt32 = FunctionDictGet<DataTypeUInt32, NameDictGetUInt32>;
|
|
|
|
using FunctionDictGetUInt64 = FunctionDictGet<DataTypeUInt64, NameDictGetUInt64>;
|
|
|
|
using FunctionDictGetInt8 = FunctionDictGet<DataTypeInt8, NameDictGetInt8>;
|
|
|
|
using FunctionDictGetInt16 = FunctionDictGet<DataTypeInt16, NameDictGetInt16>;
|
|
|
|
using FunctionDictGetInt32 = FunctionDictGet<DataTypeInt32, NameDictGetInt32>;
|
|
|
|
using FunctionDictGetInt64 = FunctionDictGet<DataTypeInt64, NameDictGetInt64>;
|
|
|
|
using FunctionDictGetFloat32 = FunctionDictGet<DataTypeFloat32, NameDictGetFloat32>;
|
|
|
|
using FunctionDictGetFloat64 = FunctionDictGet<DataTypeFloat64, NameDictGetFloat64>;
|
|
|
|
using FunctionDictGetDate = FunctionDictGet<DataTypeDate, NameDictGetDate>;
|
|
|
|
using FunctionDictGetDateTime = FunctionDictGet<DataTypeDateTime, NameDictGetDateTime>;
|
|
|
|
using FunctionDictGetUUID = FunctionDictGet<DataTypeUUID, NameDictGetUUID>;
|
|
|
|
|
|
|
|
|
|
|
|
template <typename DataType, typename Name>
|
2015-11-10 09:22:25 +00:00
|
|
|
class FunctionDictGetOrDefault final : public IFunction
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
using Type = typename DataType::FieldType;
|
2015-11-10 09:22:25 +00:00
|
|
|
|
|
|
|
public:
|
2017-11-22 21:09:23 +00:00
|
|
|
static constexpr auto name = Name::name;
|
2015-11-10 09:22:25 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
static FunctionPtr create(const Context & context)
|
|
|
|
{
|
|
|
|
return std::make_shared<FunctionDictGetOrDefault>(context.getExternalDictionaries());
|
|
|
|
}
|
2015-11-10 09:22:25 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
FunctionDictGetOrDefault(const ExternalDictionaries & dictionaries) : dictionaries(dictionaries) {}
|
2015-11-10 09:22:25 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
String getName() const override { return name; }
|
2015-11-10 09:22:25 +00:00
|
|
|
|
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
size_t getNumberOfArguments() const override { return 4; }
|
|
|
|
|
2018-03-16 03:03:17 +00:00
|
|
|
bool useDefaultImplementationForConstants() const final { return true; }
|
|
|
|
ColumnNumbers getArgumentsThatAreAlwaysConstant() const final { return {0, 1}; }
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
|
|
{
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!isString(arguments[0]))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[0]->getName() + " of first argument of function " + getName()
|
|
|
|
+ ", expected a string.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!isString(arguments[1]))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[1]->getName() + " of second argument of function " + getName()
|
|
|
|
+ ", expected a string.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!WhichDataType(arguments[2]).isUInt64() &&
|
|
|
|
!isTuple(arguments[2]))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[2]->getName() + " of third argument of function " + getName()
|
|
|
|
+ ", must be UInt64 or tuple(...).", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!checkAndGetDataType<DataType>(arguments[3].get()))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[3]->getName() + " of fourth argument of function " + getName()
|
|
|
|
+ ", must be " + String(DataType{}.getFamilyName()) + ".", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return std::make_shared<DataType>();
|
|
|
|
}
|
|
|
|
|
2018-08-08 11:26:18 +00:00
|
|
|
bool isDeterministic() const override { return false; }
|
2018-02-21 17:05:21 +00:00
|
|
|
|
2018-04-24 07:16:39 +00:00
|
|
|
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t input_rows_count) override
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto dict_name_col = checkAndGetColumnConst<ColumnString>(block.getByPosition(arguments[0]).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!dict_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"First argument of function " + getName() + " must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-04-24 07:16:39 +00:00
|
|
|
if (input_rows_count == 0)
|
2018-03-16 03:13:13 +00:00
|
|
|
{
|
|
|
|
auto & elem = block.getByPosition(result);
|
|
|
|
elem.column = elem.type->createColumn();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
auto dict = dictionaries.getDictionary(dict_name_col->getValue<String>());
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto dict_ptr = dict.get();
|
|
|
|
|
|
|
|
if (!executeDispatch<FlatDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatch<HashedDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatch<CacheDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatchComplex<ComplexKeyHashedDictionary>(block, arguments, result, dict_ptr) &&
|
2017-05-12 21:23:12 +00:00
|
|
|
!executeDispatchComplex<ComplexKeyCacheDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatchComplex<TrieDictionary>(block, arguments, result, dict_ptr))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Unsupported dictionary type " + dict_ptr->getTypeName(), ErrorCodes::UNKNOWN_TYPE};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
bool executeDispatch(Block & block, const ColumnNumbers & arguments, const size_t result,
|
|
|
|
const IDictionaryBase * dictionary)
|
|
|
|
{
|
|
|
|
const auto dict = typeid_cast<const DictionaryType *>(dictionary);
|
|
|
|
if (!dict)
|
|
|
|
return false;
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto attr_name_col = checkAndGetColumnConst<ColumnString>(block.getByPosition(arguments[1]).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!attr_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Second argument of function " + getName() + " must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
String attr_name = attr_name_col->getValue<String>();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto id_col_untyped = block.getByPosition(arguments[2]).column.get();
|
|
|
|
if (const auto id_col = checkAndGetColumn<ColumnUInt64>(id_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
executeDispatch(block, arguments, result, dict, attr_name, id_col);
|
2017-07-21 06:35:58 +00:00
|
|
|
else if (const auto id_col = checkAndGetColumnConst<ColumnVector<UInt64>>(id_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
executeDispatch(block, arguments, result, dict, attr_name, id_col);
|
|
|
|
else
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Third argument of function " + getName() + " must be UInt64", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
void executeDispatch(
|
|
|
|
Block & block, const ColumnNumbers & arguments, const size_t result, const DictionaryType * dictionary,
|
|
|
|
const std::string & attr_name, const ColumnUInt64 * id_col)
|
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto default_col_untyped = block.getByPosition(arguments[3]).column.get();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
if (const auto default_col = checkAndGetColumn<ColumnVector<Type>>(default_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
/// vector ids, vector defaults
|
2017-12-16 05:21:04 +00:00
|
|
|
auto out = ColumnVector<Type>::create(id_col->size());
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto & ids = id_col->getData();
|
|
|
|
auto & data = out->getData();
|
|
|
|
const auto & defs = default_col->getData();
|
|
|
|
DictGetTraits<DataType>::getOrDefault(dictionary, attr_name, ids, defs, data);
|
2017-12-16 05:21:04 +00:00
|
|
|
block.getByPosition(result).column = std::move(out);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2017-07-21 06:35:58 +00:00
|
|
|
else if (const auto default_col = checkAndGetColumnConst<ColumnVector<Type>>(default_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
/// vector ids, const defaults
|
2017-12-16 05:21:04 +00:00
|
|
|
auto out = ColumnVector<Type>::create(id_col->size());
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto & ids = id_col->getData();
|
|
|
|
auto & data = out->getData();
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto def = default_col->template getValue<Type>();
|
2017-04-01 07:20:54 +00:00
|
|
|
DictGetTraits<DataType>::getOrDefault(dictionary, attr_name, ids, def, data);
|
2017-12-16 05:21:04 +00:00
|
|
|
block.getByPosition(result).column = std::move(out);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Fourth argument of function " + getName() + " must be " + String(DataType{}.getFamilyName()), ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
void executeDispatch(
|
|
|
|
Block & block, const ColumnNumbers & arguments, const size_t result, const DictionaryType * dictionary,
|
2017-07-21 06:35:58 +00:00
|
|
|
const std::string & attr_name, const ColumnConst * id_col)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto default_col_untyped = block.getByPosition(arguments[3]).column.get();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
if (const auto default_col = checkAndGetColumn<ColumnVector<Type>>(default_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
/// const ids, vector defaults
|
2018-11-11 16:07:28 +00:00
|
|
|
const PaddedPODArray<UInt64> ids(1, id_col->getValue<UInt64>());
|
|
|
|
PaddedPODArray<UInt8> flags(1);
|
|
|
|
dictionary->has(ids, flags);
|
|
|
|
if (flags.front())
|
|
|
|
{
|
|
|
|
PaddedPODArray<Type> data(1);
|
|
|
|
DictGetTraits<DataType>::getOrDefault(dictionary, attr_name, ids, Type(), data);
|
|
|
|
block.getByPosition(result).column = DataTypeNumber<Type>().createColumnConst(id_col->size(), toField(data.front()));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
block.getByPosition(result).column = block.getByPosition(arguments[3]).column; // reuse the default column
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2017-07-21 06:35:58 +00:00
|
|
|
else if (const auto default_col = checkAndGetColumnConst<ColumnVector<Type>>(default_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
/// const ids, const defaults
|
2017-07-21 06:35:58 +00:00
|
|
|
const PaddedPODArray<UInt64> ids(1, id_col->getValue<UInt64>());
|
2017-04-01 07:20:54 +00:00
|
|
|
PaddedPODArray<Type> data(1);
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto & def = default_col->template getValue<Type>();
|
2017-04-01 07:20:54 +00:00
|
|
|
DictGetTraits<DataType>::getOrDefault(dictionary, attr_name, ids, def, data);
|
2017-12-10 22:44:04 +00:00
|
|
|
block.getByPosition(result).column = DataTypeNumber<Type>().createColumnConst(id_col->size(), toField(data.front()));
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Fourth argument of function " + getName() + " must be " + String(DataType{}.getFamilyName()), ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
bool executeDispatchComplex(
|
|
|
|
Block & block, const ColumnNumbers & arguments, const size_t result, const IDictionaryBase * dictionary)
|
|
|
|
{
|
|
|
|
const auto dict = typeid_cast<const DictionaryType *>(dictionary);
|
|
|
|
if (!dict)
|
|
|
|
return false;
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto attr_name_col = checkAndGetColumnConst<ColumnString>(block.getByPosition(arguments[1]).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!attr_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Second argument of function " + getName() + " must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
String attr_name = attr_name_col->getValue<String>();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-12-13 20:40:03 +00:00
|
|
|
const ColumnWithTypeAndName & key_col_with_type = block.getByPosition(arguments[2]);
|
|
|
|
ColumnPtr key_col = key_col_with_type.column;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-12-13 20:40:03 +00:00
|
|
|
/// Functions in external dictionaries only support full-value (not constant) columns with keys.
|
2017-12-15 03:47:43 +00:00
|
|
|
if (ColumnPtr key_col_materialized = key_col_with_type.column->convertToFullColumnIfConst())
|
2017-12-13 20:40:03 +00:00
|
|
|
key_col = key_col_materialized;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-12-13 20:40:03 +00:00
|
|
|
const auto & key_columns = typeid_cast<const ColumnTuple &>(*key_col).getColumns();
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto & key_types = static_cast<const DataTypeTuple &>(*key_col_with_type.type).getElements();
|
|
|
|
|
|
|
|
/// @todo detect when all key columns are constant
|
2017-12-13 20:40:03 +00:00
|
|
|
const auto rows = key_col->size();
|
2017-12-16 05:21:04 +00:00
|
|
|
auto out = ColumnVector<Type>::create(rows);
|
2017-04-01 07:20:54 +00:00
|
|
|
auto & data = out->getData();
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto default_col_untyped = block.getByPosition(arguments[3]).column.get();
|
|
|
|
if (const auto default_col = checkAndGetColumn<ColumnVector<Type>>(default_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
/// const defaults
|
|
|
|
const auto & defs = default_col->getData();
|
|
|
|
|
|
|
|
DictGetTraits<DataType>::getOrDefault(dict, attr_name, key_columns, key_types, defs, data);
|
|
|
|
}
|
2017-07-21 06:35:58 +00:00
|
|
|
else if (const auto default_col = checkAndGetColumnConst<ColumnVector<Type>>(default_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto def = default_col->template getValue<Type>();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
DictGetTraits<DataType>::getOrDefault(dict, attr_name, key_columns, key_types, def, data);
|
|
|
|
}
|
|
|
|
else
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Fourth argument of function " + getName() + " must be " + String(DataType{}.getFamilyName()), ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-12-16 05:21:04 +00:00
|
|
|
block.getByPosition(result).column = std::move(out);
|
2017-04-01 07:20:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ExternalDictionaries & dictionaries;
|
2015-11-10 09:22:25 +00:00
|
|
|
};
|
|
|
|
|
2017-11-22 21:09:23 +00:00
|
|
|
struct NameDictGetUInt8OrDefault { static constexpr auto name = "dictGetUInt8OrDefault"; };
|
|
|
|
struct NameDictGetUInt16OrDefault { static constexpr auto name = "dictGetUInt16OrDefault"; };
|
|
|
|
struct NameDictGetUInt32OrDefault { static constexpr auto name = "dictGetUInt32OrDefault"; };
|
|
|
|
struct NameDictGetUInt64OrDefault { static constexpr auto name = "dictGetUInt64OrDefault"; };
|
|
|
|
struct NameDictGetInt8OrDefault { static constexpr auto name = "dictGetInt8OrDefault"; };
|
|
|
|
struct NameDictGetInt16OrDefault { static constexpr auto name = "dictGetInt16OrDefault"; };
|
|
|
|
struct NameDictGetInt32OrDefault { static constexpr auto name = "dictGetInt32OrDefault"; };
|
|
|
|
struct NameDictGetInt64OrDefault { static constexpr auto name = "dictGetInt64OrDefault"; };
|
|
|
|
struct NameDictGetFloat32OrDefault { static constexpr auto name = "dictGetFloat32OrDefault"; };
|
|
|
|
struct NameDictGetFloat64OrDefault { static constexpr auto name = "dictGetFloat64OrDefault"; };
|
|
|
|
struct NameDictGetDateOrDefault { static constexpr auto name = "dictGetDateOrDefault"; };
|
|
|
|
struct NameDictGetDateTimeOrDefault { static constexpr auto name = "dictGetDateTimeOrDefault"; };
|
|
|
|
struct NameDictGetUUIDOrDefault { static constexpr auto name = "dictGetUUIDOrDefault"; };
|
|
|
|
|
2017-12-23 23:16:40 +00:00
|
|
|
using FunctionDictGetUInt8OrDefault = FunctionDictGetOrDefault<DataTypeUInt8, NameDictGetUInt8OrDefault>;
|
|
|
|
using FunctionDictGetUInt16OrDefault = FunctionDictGetOrDefault<DataTypeUInt16, NameDictGetUInt16OrDefault>;
|
|
|
|
using FunctionDictGetUInt32OrDefault = FunctionDictGetOrDefault<DataTypeUInt32, NameDictGetUInt32OrDefault>;
|
|
|
|
using FunctionDictGetUInt64OrDefault = FunctionDictGetOrDefault<DataTypeUInt64, NameDictGetUInt64OrDefault>;
|
|
|
|
using FunctionDictGetInt8OrDefault = FunctionDictGetOrDefault<DataTypeInt8, NameDictGetInt8OrDefault>;
|
|
|
|
using FunctionDictGetInt16OrDefault = FunctionDictGetOrDefault<DataTypeInt16, NameDictGetInt16OrDefault>;
|
|
|
|
using FunctionDictGetInt32OrDefault = FunctionDictGetOrDefault<DataTypeInt32, NameDictGetInt32OrDefault>;
|
|
|
|
using FunctionDictGetInt64OrDefault = FunctionDictGetOrDefault<DataTypeInt64, NameDictGetInt64OrDefault>;
|
|
|
|
using FunctionDictGetFloat32OrDefault = FunctionDictGetOrDefault<DataTypeFloat32, NameDictGetFloat32OrDefault>;
|
|
|
|
using FunctionDictGetFloat64OrDefault = FunctionDictGetOrDefault<DataTypeFloat64, NameDictGetFloat64OrDefault>;
|
|
|
|
using FunctionDictGetDateOrDefault = FunctionDictGetOrDefault<DataTypeDate, NameDictGetDateOrDefault>;
|
|
|
|
using FunctionDictGetDateTimeOrDefault = FunctionDictGetOrDefault<DataTypeDateTime, NameDictGetDateTimeOrDefault>;
|
|
|
|
using FunctionDictGetUUIDOrDefault = FunctionDictGetOrDefault<DataTypeUUID, NameDictGetUUIDOrDefault>;
|
2015-11-10 09:22:25 +00:00
|
|
|
|
2018-11-15 13:48:00 +00:00
|
|
|
#define FOR_DICT_TYPES(M) \
|
|
|
|
M(UInt8) \
|
|
|
|
M(UInt16) \
|
|
|
|
M(UInt32) \
|
|
|
|
M(UInt64) \
|
|
|
|
M(Int8) \
|
|
|
|
M(Int16) \
|
|
|
|
M(Int32) \
|
|
|
|
M(Int64) \
|
|
|
|
M(Float32) \
|
|
|
|
M(Float64) \
|
|
|
|
M(Date) \
|
|
|
|
M(DateTime) \
|
|
|
|
M(UUID)
|
|
|
|
|
|
|
|
class FunctionDictGetNoType final : public IFunction
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static constexpr auto name = "dictGet";
|
|
|
|
|
|
|
|
static FunctionPtr create(const Context & context)
|
|
|
|
{
|
|
|
|
return std::make_shared<FunctionDictGetNoType>(context.getExternalDictionaries(), context);
|
|
|
|
}
|
|
|
|
|
|
|
|
FunctionDictGetNoType(const ExternalDictionaries & dictionaries, const Context & context) : dictionaries(dictionaries), context(context) {}
|
|
|
|
|
|
|
|
String getName() const override { return name; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool isVariadic() const override { return true; }
|
|
|
|
size_t getNumberOfArguments() const override { return 0; }
|
|
|
|
|
|
|
|
bool useDefaultImplementationForConstants() const final { return true; }
|
|
|
|
ColumnNumbers getArgumentsThatAreAlwaysConstant() const final { return {0, 1}; }
|
|
|
|
|
|
|
|
bool isInjective(const Block & sample_block) override
|
|
|
|
{
|
|
|
|
return isDictGetFunctionInjective(dictionaries, sample_block);
|
|
|
|
}
|
|
|
|
|
|
|
|
DataTypePtr getReturnTypeImpl(const ColumnsWithTypeAndName & arguments) const override
|
|
|
|
{
|
|
|
|
if (arguments.size() != 3 && arguments.size() != 4)
|
|
|
|
throw Exception{"Function " + getName() + " takes 3 or 4 arguments", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH};
|
|
|
|
|
|
|
|
String dict_name;
|
|
|
|
if (auto name_col = checkAndGetColumnConst<ColumnString>(arguments[0].column.get()))
|
|
|
|
{
|
|
|
|
dict_name = name_col->getValue<String>();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw Exception{"Illegal type " + arguments[0].type->getName() + " of first argument of function " + getName()
|
|
|
|
+ ", expected a const string.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
|
|
|
|
|
|
|
String attr_name;
|
|
|
|
if (auto name_col = checkAndGetColumnConst<ColumnString>(arguments[1].column.get()))
|
|
|
|
{
|
|
|
|
attr_name = name_col->getValue<String>();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw Exception{"Illegal type " + arguments[1].type->getName() + " of second argument of function " + getName()
|
|
|
|
+ ", expected a const string.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
|
|
|
|
|
|
|
if (!WhichDataType(arguments[2].type).isUInt64() &&
|
|
|
|
!isTuple(arguments[2].type))
|
|
|
|
throw Exception{"Illegal type " + arguments[2].type->getName() + " of third argument of function " + getName()
|
|
|
|
+ ", must be UInt64 or tuple(...).", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
|
|
|
|
|
|
|
if (arguments.size() == 4 )
|
|
|
|
{
|
|
|
|
const auto range_argument = arguments[3].type.get();
|
|
|
|
if (!(range_argument->isValueRepresentedByInteger() &&
|
|
|
|
range_argument->getSizeOfValueInMemory() <= sizeof(Int64)))
|
|
|
|
throw Exception{"Illegal type " + range_argument->getName() + " of fourth argument of function " + getName()
|
|
|
|
+ ", must be convertible to " + TypeName<Int64>::get() + ".", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
|
|
|
}
|
|
|
|
|
|
|
|
auto dict = dictionaries.getDictionary(dict_name);
|
|
|
|
const DictionaryStructure & structure = dict->getStructure();
|
|
|
|
|
|
|
|
for (const auto idx : ext::range(0, structure.attributes.size()))
|
|
|
|
{
|
|
|
|
const DictionaryAttribute & attribute = structure.attributes[idx];
|
|
|
|
if (attribute.name == attr_name)
|
|
|
|
{
|
|
|
|
WhichDataType dt = attribute.type;
|
|
|
|
if (dt.idx == TypeIndex::String)
|
|
|
|
impl = FunctionDictGetString::create(context);
|
|
|
|
#define DISPATCH(TYPE) \
|
|
|
|
else if (dt.idx == TypeIndex::TYPE) \
|
|
|
|
impl = FunctionDictGet<DataType##TYPE, NameDictGet##TYPE>::create(context);
|
|
|
|
FOR_DICT_TYPES(DISPATCH)
|
|
|
|
#undef DISPATCH
|
|
|
|
else
|
|
|
|
throw Exception("Unknown dictGet type", ErrorCodes::UNKNOWN_TYPE);
|
|
|
|
return attribute.type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw Exception{"No such attribute '" + attr_name + "'", ErrorCodes::BAD_ARGUMENTS};
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isDeterministic() const override { return false; }
|
|
|
|
|
|
|
|
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t input_rows_count) override
|
|
|
|
{
|
|
|
|
impl->executeImpl(block, arguments, result, input_rows_count);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const ExternalDictionaries & dictionaries;
|
|
|
|
const Context & context;
|
|
|
|
mutable FunctionPtr impl; // underlying function used by dictGet function without explicit type info
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class FunctionDictGetNoTypeOrDefault final : public IFunction
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static constexpr auto name = "dictGetOrDefault";
|
|
|
|
|
|
|
|
static FunctionPtr create(const Context & context)
|
|
|
|
{
|
|
|
|
return std::make_shared<FunctionDictGetNoTypeOrDefault>(context.getExternalDictionaries(), context);
|
|
|
|
}
|
|
|
|
|
|
|
|
FunctionDictGetNoTypeOrDefault(const ExternalDictionaries & dictionaries, const Context & context) : dictionaries(dictionaries), context(context) {}
|
|
|
|
|
|
|
|
String getName() const override { return name; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
size_t getNumberOfArguments() const override { return 4; }
|
|
|
|
|
|
|
|
bool useDefaultImplementationForConstants() const final { return true; }
|
|
|
|
ColumnNumbers getArgumentsThatAreAlwaysConstant() const final { return {0, 1}; }
|
|
|
|
|
|
|
|
bool isInjective(const Block & sample_block) override
|
|
|
|
{
|
|
|
|
return isDictGetFunctionInjective(dictionaries, sample_block);
|
|
|
|
}
|
|
|
|
|
|
|
|
DataTypePtr getReturnTypeImpl(const ColumnsWithTypeAndName & arguments) const override
|
|
|
|
{
|
|
|
|
String dict_name;
|
|
|
|
if (auto name_col = checkAndGetColumnConst<ColumnString>(arguments[0].column.get()))
|
|
|
|
{
|
|
|
|
dict_name = name_col->getValue<String>();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw Exception{"Illegal type " + arguments[0].type->getName() + " of first argument of function " + getName()
|
|
|
|
+ ", expected a const string.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
|
|
|
|
|
|
|
String attr_name;
|
|
|
|
if (auto name_col = checkAndGetColumnConst<ColumnString>(arguments[1].column.get()))
|
|
|
|
{
|
|
|
|
attr_name = name_col->getValue<String>();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw Exception{"Illegal type " + arguments[1].type->getName() + " of second argument of function " + getName()
|
|
|
|
+ ", expected a const string.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
|
|
|
|
|
|
|
if (!WhichDataType(arguments[2].type).isUInt64() &&
|
|
|
|
!isTuple(arguments[2].type))
|
|
|
|
throw Exception{"Illegal type " + arguments[2].type->getName() + " of third argument of function " + getName()
|
|
|
|
+ ", must be UInt64 or tuple(...).", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
|
|
|
|
|
|
|
auto dict = dictionaries.getDictionary(dict_name);
|
|
|
|
const DictionaryStructure & structure = dict->getStructure();
|
|
|
|
|
|
|
|
for (const auto idx : ext::range(0, structure.attributes.size()))
|
|
|
|
{
|
|
|
|
const DictionaryAttribute & attribute = structure.attributes[idx];
|
|
|
|
if (attribute.name == attr_name)
|
|
|
|
{
|
|
|
|
WhichDataType dt = attribute.type;
|
|
|
|
if (dt.idx == TypeIndex::String)
|
|
|
|
{
|
|
|
|
if (!isString(arguments[3].type))
|
|
|
|
throw Exception{"Illegal type " + arguments[3].type->getName() + " of fourth argument of function " + getName() +
|
|
|
|
", must be String.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
|
|
|
impl = FunctionDictGetStringOrDefault::create(context);
|
|
|
|
}
|
|
|
|
#define DISPATCH(TYPE) \
|
|
|
|
else if (dt.idx == TypeIndex::TYPE) \
|
|
|
|
{ \
|
|
|
|
if (!checkAndGetDataType<DataType##TYPE>(arguments[3].type.get())) \
|
|
|
|
throw Exception{"Illegal type " + arguments[3].type->getName() + " of fourth argument of function " + getName() \
|
|
|
|
+ ", must be " + String(DataType##TYPE{}.getFamilyName()) + ".", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT}; \
|
|
|
|
impl = FunctionDictGetOrDefault<DataType##TYPE, NameDictGet##TYPE ## OrDefault>::create(context); \
|
|
|
|
}
|
|
|
|
FOR_DICT_TYPES(DISPATCH)
|
|
|
|
#undef DISPATCH
|
|
|
|
else
|
|
|
|
throw Exception("Unknown dictGetOrDefault type", ErrorCodes::UNKNOWN_TYPE);
|
|
|
|
return attribute.type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw Exception{"No such attribute '" + attr_name + "'", ErrorCodes::BAD_ARGUMENTS};
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isDeterministic() const override { return false; }
|
|
|
|
|
|
|
|
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t input_rows_count) override
|
|
|
|
{
|
|
|
|
impl->executeImpl(block, arguments, result, input_rows_count);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const ExternalDictionaries & dictionaries;
|
|
|
|
const Context & context;
|
|
|
|
mutable FunctionPtr impl; // underlying function used by dictGet function without explicit type info
|
|
|
|
};
|
2015-11-10 09:22:25 +00:00
|
|
|
|
2017-03-25 23:42:04 +00:00
|
|
|
/// Functions to work with hierarchies.
|
|
|
|
|
2015-01-28 13:20:20 +00:00
|
|
|
class FunctionDictGetHierarchy final : public IFunction
|
|
|
|
{
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
static constexpr auto name = "dictGetHierarchy";
|
2015-01-28 13:20:20 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
static FunctionPtr create(const Context & context)
|
|
|
|
{
|
|
|
|
return std::make_shared<FunctionDictGetHierarchy>(context.getExternalDictionaries());
|
|
|
|
}
|
2015-01-28 13:20:20 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
FunctionDictGetHierarchy(const ExternalDictionaries & dictionaries) : dictionaries(dictionaries) {}
|
2015-01-28 13:20:20 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
String getName() const override { return name; }
|
2015-01-28 13:20:20 +00:00
|
|
|
|
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
size_t getNumberOfArguments() const override { return 2; }
|
2017-12-02 02:47:12 +00:00
|
|
|
bool isInjective(const Block & /*sample_block*/) override { return true; }
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-03-16 03:03:17 +00:00
|
|
|
bool useDefaultImplementationForConstants() const final { return true; }
|
|
|
|
ColumnNumbers getArgumentsThatAreAlwaysConstant() const final { return {0}; }
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
|
|
{
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!isString(arguments[0]))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[0]->getName() + " of first argument of function " + getName()
|
|
|
|
+ ", expected a string.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!WhichDataType(arguments[1]).isUInt64())
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[1]->getName() + " of second argument of function " + getName()
|
|
|
|
+ ", must be UInt64.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return std::make_shared<DataTypeArray>(std::make_shared<DataTypeUInt64>());
|
|
|
|
}
|
|
|
|
|
2018-08-08 11:26:18 +00:00
|
|
|
bool isDeterministic() const override { return false; }
|
2018-02-21 17:05:21 +00:00
|
|
|
|
2018-04-24 07:16:39 +00:00
|
|
|
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t input_rows_count) override
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto dict_name_col = checkAndGetColumnConst<ColumnString>(block.getByPosition(arguments[0]).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!dict_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"First argument of function " + getName() + " must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-04-24 07:16:39 +00:00
|
|
|
if (input_rows_count == 0)
|
2018-03-16 03:13:13 +00:00
|
|
|
{
|
|
|
|
auto & elem = block.getByPosition(result);
|
|
|
|
elem.column = elem.type->createColumn();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
auto dict = dictionaries.getDictionary(dict_name_col->getValue<String>());
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto dict_ptr = dict.get();
|
|
|
|
|
|
|
|
if (!executeDispatch<FlatDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatch<HashedDictionary>(block, arguments, result, dict_ptr) &&
|
|
|
|
!executeDispatch<CacheDictionary>(block, arguments, result, dict_ptr))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Unsupported dictionary type " + dict_ptr->getTypeName(), ErrorCodes::UNKNOWN_TYPE};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
bool executeDispatch(Block & block, const ColumnNumbers & arguments, const size_t result,
|
|
|
|
const IDictionaryBase * dictionary)
|
|
|
|
{
|
|
|
|
const auto dict = typeid_cast<const DictionaryType *>(dictionary);
|
|
|
|
if (!dict)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!dict->hasHierarchy())
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Dictionary does not have a hierarchy", ErrorCodes::UNSUPPORTED_METHOD};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
const auto get_hierarchies = [&] (const PaddedPODArray<UInt64> & in, PaddedPODArray<UInt64> & out, PaddedPODArray<UInt64> & offsets)
|
|
|
|
{
|
|
|
|
const auto size = in.size();
|
|
|
|
|
|
|
|
/// copy of `in` array
|
|
|
|
auto in_array = std::make_unique<PaddedPODArray<UInt64>>(std::begin(in), std::end(in));
|
|
|
|
/// used for storing and handling result of ::toParent call
|
|
|
|
auto out_array = std::make_unique<PaddedPODArray<UInt64>>(size);
|
|
|
|
/// resulting hierarchies
|
|
|
|
std::vector<std::vector<IDictionary::Key>> hierarchies(size); /// TODO Bad code, poor performance.
|
|
|
|
|
|
|
|
/// total number of non-zero elements, used for allocating all the required memory upfront
|
2017-07-21 06:35:58 +00:00
|
|
|
size_t total_count = 0;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
auto all_zeroes = true;
|
|
|
|
|
|
|
|
/// erase zeroed identifiers, store non-zeroed ones
|
|
|
|
for (const auto i : ext::range(0, size))
|
|
|
|
{
|
|
|
|
const auto id = (*in_array)[i];
|
|
|
|
if (0 == id)
|
|
|
|
continue;
|
|
|
|
|
2017-08-04 16:59:50 +00:00
|
|
|
|
|
|
|
auto & hierarchy = hierarchies[i];
|
|
|
|
|
2017-08-10 03:23:02 +00:00
|
|
|
/// Checking for loop
|
2017-08-04 16:59:50 +00:00
|
|
|
if (std::find(std::begin(hierarchy), std::end(hierarchy), id) != std::end(hierarchy))
|
|
|
|
continue;
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
all_zeroes = false;
|
|
|
|
/// place id at it's corresponding place
|
2017-08-04 16:59:50 +00:00
|
|
|
hierarchy.push_back(id);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
++total_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (all_zeroes)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/// translate all non-zero identifiers at once
|
|
|
|
dict->toParent(*in_array, *out_array);
|
|
|
|
|
|
|
|
/// we're going to use the `in_array` from this iteration as `out_array` on the next one
|
|
|
|
std::swap(in_array, out_array);
|
|
|
|
}
|
|
|
|
|
|
|
|
out.reserve(total_count);
|
|
|
|
offsets.resize(size);
|
|
|
|
|
|
|
|
for (const auto i : ext::range(0, size))
|
|
|
|
{
|
|
|
|
const auto & ids = hierarchies[i];
|
|
|
|
out.insert_assume_reserved(std::begin(ids), std::end(ids));
|
|
|
|
offsets[i] = out.size();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto id_col_untyped = block.getByPosition(arguments[1]).column.get();
|
|
|
|
if (const auto id_col = checkAndGetColumn<ColumnUInt64>(id_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
const auto & in = id_col->getData();
|
2017-12-16 05:34:07 +00:00
|
|
|
auto backend = ColumnUInt64::create();
|
|
|
|
auto offsets = ColumnArray::ColumnOffsets::create();
|
|
|
|
get_hierarchies(in, backend->getData(), offsets->getData());
|
|
|
|
block.getByPosition(result).column = ColumnArray::create(std::move(backend), std::move(offsets));
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2017-07-21 06:35:58 +00:00
|
|
|
else if (const auto id_col = checkAndGetColumnConst<ColumnVector<UInt64>>(id_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
const PaddedPODArray<UInt64> in(1, id_col->getValue<UInt64>());
|
2017-12-16 05:34:07 +00:00
|
|
|
auto backend = ColumnUInt64::create();
|
|
|
|
auto offsets = ColumnArray::ColumnOffsets::create();
|
|
|
|
get_hierarchies(in, backend->getData(), offsets->getData());
|
|
|
|
auto array = ColumnArray::create(std::move(backend), std::move(offsets));
|
2017-12-10 22:44:04 +00:00
|
|
|
block.getByPosition(result).column = block.getByPosition(result).type->createColumnConst(id_col->size(), (*array)[0].get<Array>());
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Second argument of function " + getName() + " must be UInt64", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ExternalDictionaries & dictionaries;
|
2015-01-28 13:20:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class FunctionDictIsIn final : public IFunction
|
|
|
|
{
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
static constexpr auto name = "dictIsIn";
|
2015-01-28 13:20:20 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
static FunctionPtr create(const Context & context)
|
|
|
|
{
|
|
|
|
return std::make_shared<FunctionDictIsIn>(context.getExternalDictionaries());
|
|
|
|
}
|
2015-01-28 13:20:20 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
FunctionDictIsIn(const ExternalDictionaries & dictionaries) : dictionaries(dictionaries) {}
|
2015-01-28 13:20:20 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
String getName() const override { return name; }
|
2015-01-28 13:20:20 +00:00
|
|
|
|
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
size_t getNumberOfArguments() const override { return 3; }
|
|
|
|
|
2018-03-16 03:03:17 +00:00
|
|
|
bool useDefaultImplementationForConstants() const final { return true; }
|
|
|
|
ColumnNumbers getArgumentsThatAreAlwaysConstant() const final { return {0}; }
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
|
|
{
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!isString(arguments[0]))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[0]->getName() + " of first argument of function " + getName()
|
|
|
|
+ ", expected a string.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!WhichDataType(arguments[1]).isUInt64())
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[1]->getName() + " of second argument of function " + getName()
|
|
|
|
+ ", must be UInt64.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-09-07 14:37:26 +00:00
|
|
|
if (!WhichDataType(arguments[2]).isUInt64())
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal type " + arguments[2]->getName() + " of third argument of function " + getName()
|
|
|
|
+ ", must be UInt64.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return std::make_shared<DataTypeUInt8>();
|
|
|
|
}
|
|
|
|
|
2018-08-08 11:26:18 +00:00
|
|
|
bool isDeterministic() const override { return false; }
|
2018-02-21 17:05:21 +00:00
|
|
|
|
2018-04-24 07:16:39 +00:00
|
|
|
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t input_rows_count) override
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto dict_name_col = checkAndGetColumnConst<ColumnString>(block.getByPosition(arguments[0]).column.get());
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!dict_name_col)
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"First argument of function " + getName() + " must be a constant string", ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-04-24 07:16:39 +00:00
|
|
|
if (input_rows_count == 0)
|
2018-03-16 03:13:13 +00:00
|
|
|
{
|
|
|
|
auto & elem = block.getByPosition(result);
|
|
|
|
elem.column = elem.type->createColumn();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
auto dict = dictionaries.getDictionary(dict_name_col->getValue<String>());
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto dict_ptr = dict.get();
|
|
|
|
|
|
|
|
if (!executeDispatch<FlatDictionary>(block, arguments, result, dict_ptr)
|
|
|
|
&& !executeDispatch<HashedDictionary>(block, arguments, result, dict_ptr)
|
|
|
|
&& !executeDispatch<CacheDictionary>(block, arguments, result, dict_ptr))
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Unsupported dictionary type " + dict_ptr->getTypeName(), ErrorCodes::UNKNOWN_TYPE};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
bool executeDispatch(Block & block, const ColumnNumbers & arguments, const size_t result,
|
|
|
|
const IDictionaryBase * dictionary)
|
|
|
|
{
|
|
|
|
const auto dict = typeid_cast<const DictionaryType *>(dictionary);
|
|
|
|
if (!dict)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!dict->hasHierarchy())
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Dictionary does not have a hierarchy", ErrorCodes::UNSUPPORTED_METHOD};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto child_id_col_untyped = block.getByPosition(arguments[1]).column.get();
|
|
|
|
const auto ancestor_id_col_untyped = block.getByPosition(arguments[2]).column.get();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
if (const auto child_id_col = checkAndGetColumn<ColumnUInt64>(child_id_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
execute(block, result, dict, child_id_col, ancestor_id_col_untyped);
|
2017-07-21 06:35:58 +00:00
|
|
|
else if (const auto child_id_col = checkAndGetColumnConst<ColumnVector<UInt64>>(child_id_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
execute(block, result, dict, child_id_col, ancestor_id_col_untyped);
|
|
|
|
else
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal column " + child_id_col_untyped->getName()
|
|
|
|
+ " of second argument of function " + getName(), ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
bool execute(Block & block, const size_t result, const DictionaryType * dictionary,
|
|
|
|
const ColumnUInt64 * child_id_col, const IColumn * ancestor_id_col_untyped)
|
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
if (const auto ancestor_id_col = checkAndGetColumn<ColumnUInt64>(ancestor_id_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-12-16 05:21:04 +00:00
|
|
|
auto out = ColumnUInt8::create();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
const auto & child_ids = child_id_col->getData();
|
|
|
|
const auto & ancestor_ids = ancestor_id_col->getData();
|
|
|
|
auto & data = out->getData();
|
|
|
|
const auto size = child_id_col->size();
|
|
|
|
data.resize(size);
|
|
|
|
|
|
|
|
dictionary->isInVectorVector(child_ids, ancestor_ids, data);
|
2017-12-16 05:21:04 +00:00
|
|
|
block.getByPosition(result).column = std::move(out);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2017-07-21 06:35:58 +00:00
|
|
|
else if (const auto ancestor_id_col = checkAndGetColumnConst<ColumnVector<UInt64>>(ancestor_id_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-12-16 05:21:04 +00:00
|
|
|
auto out = ColumnUInt8::create();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
const auto & child_ids = child_id_col->getData();
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto ancestor_id = ancestor_id_col->getValue<UInt64>();
|
2017-04-01 07:20:54 +00:00
|
|
|
auto & data = out->getData();
|
|
|
|
const auto size = child_id_col->size();
|
|
|
|
data.resize(size);
|
|
|
|
|
|
|
|
dictionary->isInVectorConstant(child_ids, ancestor_id, data);
|
2017-12-16 05:21:04 +00:00
|
|
|
block.getByPosition(result).column = std::move(out);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal column " + ancestor_id_col_untyped->getName()
|
|
|
|
+ " of third argument of function " + getName(), ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DictionaryType>
|
|
|
|
bool execute(Block & block, const size_t result, const DictionaryType * dictionary,
|
2017-07-21 06:35:58 +00:00
|
|
|
const ColumnConst * child_id_col, const IColumn * ancestor_id_col_untyped)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
if (const auto ancestor_id_col = checkAndGetColumn<ColumnUInt64>(ancestor_id_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-12-16 05:21:04 +00:00
|
|
|
auto out = ColumnUInt8::create();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto child_id = child_id_col->getValue<UInt64>();
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto & ancestor_ids = ancestor_id_col->getData();
|
|
|
|
auto & data = out->getData();
|
|
|
|
const auto size = child_id_col->size();
|
|
|
|
data.resize(size);
|
|
|
|
|
|
|
|
dictionary->isInConstantVector(child_id, ancestor_ids, data);
|
2017-12-16 05:21:04 +00:00
|
|
|
block.getByPosition(result).column = std::move(out);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2017-07-21 06:35:58 +00:00
|
|
|
else if (const auto ancestor_id_col = checkAndGetColumnConst<ColumnVector<UInt64>>(ancestor_id_col_untyped))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
const auto child_id = child_id_col->getValue<UInt64>();
|
|
|
|
const auto ancestor_id = ancestor_id_col->getValue<UInt64>();
|
2017-04-01 07:20:54 +00:00
|
|
|
UInt8 res = 0;
|
|
|
|
|
|
|
|
dictionary->isInConstantConstant(child_id, ancestor_id, res);
|
2018-10-22 08:54:54 +00:00
|
|
|
block.getByPosition(result).column = DataTypeUInt8().createColumnConst(child_id_col->size(), res);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else
|
2018-03-16 03:03:17 +00:00
|
|
|
throw Exception{"Illegal column " + ancestor_id_col_untyped->getName()
|
|
|
|
+ " of third argument of function " + getName(), ErrorCodes::ILLEGAL_COLUMN};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ExternalDictionaries & dictionaries;
|
2015-01-28 13:20:20 +00:00
|
|
|
};
|
|
|
|
|
2018-09-14 19:04:53 +00:00
|
|
|
|
2018-09-13 13:33:44 +00:00
|
|
|
template <typename T>
|
2018-09-18 16:12:23 +00:00
|
|
|
static const PaddedPODArray<T> & getColumnDataAsPaddedPODArray(const IColumn & column, PaddedPODArray<T> & backup_storage)
|
2018-09-13 13:33:44 +00:00
|
|
|
{
|
2018-09-14 19:23:03 +00:00
|
|
|
if (const auto vector_col = checkAndGetColumn<ColumnVector<T>>(&column))
|
2018-09-13 13:33:44 +00:00
|
|
|
{
|
2018-09-14 19:23:03 +00:00
|
|
|
return vector_col->getData();
|
2018-09-13 13:33:44 +00:00
|
|
|
}
|
2018-09-14 19:23:03 +00:00
|
|
|
if (const auto const_col = checkAndGetColumnConstData<ColumnVector<T>>(&column))
|
2018-09-13 13:33:44 +00:00
|
|
|
{
|
2018-09-14 19:23:03 +00:00
|
|
|
return const_col->getData();
|
2018-09-13 13:33:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// With type conversion, need to use backup storage here
|
2018-09-14 19:23:03 +00:00
|
|
|
const auto size = column.size();
|
|
|
|
backup_storage.resize(size);
|
2018-09-13 13:33:44 +00:00
|
|
|
for (size_t i = 0; i < size; ++i)
|
2018-09-14 19:23:03 +00:00
|
|
|
backup_storage[i] = column.getUInt(i);
|
2018-09-13 13:33:44 +00:00
|
|
|
|
|
|
|
return backup_storage;
|
|
|
|
}
|
|
|
|
|
2018-08-26 00:52:58 +00:00
|
|
|
}
|