2017-04-25 09:10:27 +00:00
|
|
|
#include <sstream>
|
2017-04-28 18:33:31 +00:00
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
2017-12-25 18:29:04 +00:00
|
|
|
#include <DataTypes/DataTypeDate.h>
|
2017-04-25 09:10:27 +00:00
|
|
|
#include <Dictionaries/IDictionarySource.h>
|
|
|
|
#include <Dictionaries/DictionaryStructure.h>
|
|
|
|
#include <Storages/StorageDictionary.h>
|
2017-12-28 21:36:27 +00:00
|
|
|
#include <Storages/StorageFactory.h>
|
2017-04-25 09:10:27 +00:00
|
|
|
#include <Interpreters/Context.h>
|
2018-01-12 18:56:13 +00:00
|
|
|
#include <Interpreters/evaluateConstantExpression.h>
|
2017-06-22 15:44:19 +00:00
|
|
|
#include <Interpreters/ExternalDictionaries.h>
|
2017-12-28 21:36:27 +00:00
|
|
|
#include <Parsers/ASTLiteral.h>
|
2017-04-27 17:16:24 +00:00
|
|
|
#include <common/logger_useful.h>
|
2017-07-13 20:58:19 +00:00
|
|
|
#include <Common/typeid_cast.h>
|
2017-04-25 09:10:27 +00:00
|
|
|
|
2017-12-28 21:36:27 +00:00
|
|
|
|
2017-06-23 15:55:45 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
2017-04-25 09:10:27 +00:00
|
|
|
|
2017-12-28 21:36:27 +00:00
|
|
|
namespace ErrorCodes
|
2017-06-22 15:44:19 +00:00
|
|
|
{
|
2017-12-28 21:36:27 +00:00
|
|
|
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
|
2017-06-22 15:44:19 +00:00
|
|
|
}
|
|
|
|
|
2017-04-25 09:10:27 +00:00
|
|
|
|
|
|
|
StorageDictionary::StorageDictionary(
|
|
|
|
const String & table_name_,
|
2017-12-25 21:57:29 +00:00
|
|
|
const NamesAndTypesList & columns_,
|
|
|
|
const NamesAndTypesList & materialized_columns_,
|
|
|
|
const NamesAndTypesList & alias_columns_,
|
2017-04-25 09:10:27 +00:00
|
|
|
const ColumnDefaults & column_defaults_,
|
2017-06-22 15:44:19 +00:00
|
|
|
const DictionaryStructure & dictionary_structure_,
|
|
|
|
const String & dictionary_name_)
|
2017-04-25 09:10:27 +00:00
|
|
|
: IStorage{materialized_columns_, alias_columns_, column_defaults_}, table_name(table_name_),
|
2017-06-23 15:55:45 +00:00
|
|
|
columns(columns_), dictionary_name(dictionary_name_),
|
2017-06-22 15:44:19 +00:00
|
|
|
logger(&Poco::Logger::get("StorageDictionary"))
|
2017-04-25 09:10:27 +00:00
|
|
|
{
|
2017-06-22 15:44:19 +00:00
|
|
|
checkNamesAndTypesCompatibleWithDictionary(dictionary_structure_);
|
2017-04-25 09:10:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BlockInputStreams StorageDictionary::read(
|
|
|
|
const Names & column_names,
|
2017-12-01 21:13:25 +00:00
|
|
|
const SelectQueryInfo & /*query_info*/,
|
2017-04-25 09:10:27 +00:00
|
|
|
const Context & context,
|
|
|
|
QueryProcessingStage::Enum & processed_stage,
|
|
|
|
const size_t max_block_size,
|
2017-12-01 21:13:25 +00:00
|
|
|
const unsigned /*threads*/)
|
2017-04-25 09:10:27 +00:00
|
|
|
{
|
2017-07-05 16:36:45 +00:00
|
|
|
processed_stage = QueryProcessingStage::FetchColumns;
|
2017-06-22 15:44:19 +00:00
|
|
|
auto dictionary = context.getExternalDictionaries().getDictionary(dictionary_name);
|
2017-05-29 17:26:45 +00:00
|
|
|
return BlockInputStreams{dictionary->getBlockInputStream(column_names, max_block_size)};
|
2017-04-25 09:10:27 +00:00
|
|
|
}
|
|
|
|
|
2017-12-25 21:57:29 +00:00
|
|
|
NamesAndTypesList StorageDictionary::getNamesAndTypes(const DictionaryStructure & dictionary_structure)
|
2017-04-25 09:10:27 +00:00
|
|
|
{
|
2017-12-25 21:57:29 +00:00
|
|
|
NamesAndTypesList dictionary_names_and_types;
|
2017-04-28 18:33:31 +00:00
|
|
|
|
2017-12-25 21:10:46 +00:00
|
|
|
if (dictionary_structure.id)
|
|
|
|
dictionary_names_and_types.emplace_back(dictionary_structure.id->name, std::make_shared<DataTypeUInt64>());
|
|
|
|
if (dictionary_structure.range_min)
|
2017-12-26 10:54:39 +00:00
|
|
|
dictionary_names_and_types.emplace_back(dictionary_structure.range_min->name, std::make_shared<DataTypeDate>());
|
2017-12-25 21:10:46 +00:00
|
|
|
if (dictionary_structure.range_max)
|
2017-12-26 10:54:39 +00:00
|
|
|
dictionary_names_and_types.emplace_back(dictionary_structure.range_max->name, std::make_shared<DataTypeDate>());
|
2017-12-25 21:10:46 +00:00
|
|
|
if (dictionary_structure.key)
|
|
|
|
for (const auto & attribute : *dictionary_structure.key)
|
|
|
|
dictionary_names_and_types.emplace_back(attribute.name, attribute.type);
|
2017-04-28 18:33:31 +00:00
|
|
|
|
2017-12-25 21:10:46 +00:00
|
|
|
for (const auto & attribute : dictionary_structure.attributes)
|
|
|
|
dictionary_names_and_types.emplace_back(attribute.name, attribute.type);
|
2017-04-28 18:33:31 +00:00
|
|
|
|
2017-12-25 21:10:46 +00:00
|
|
|
return dictionary_names_and_types;
|
2017-04-28 18:33:31 +00:00
|
|
|
}
|
|
|
|
|
2017-12-25 21:10:46 +00:00
|
|
|
void StorageDictionary::checkNamesAndTypesCompatibleWithDictionary(const DictionaryStructure & dictionary_structure) const
|
2017-04-28 18:33:31 +00:00
|
|
|
{
|
2017-12-25 21:10:46 +00:00
|
|
|
auto dictionary_names_and_types = getNamesAndTypes(dictionary_structure);
|
2017-12-25 21:57:29 +00:00
|
|
|
std::set<NameAndTypePair> namesAndTypesSet(dictionary_names_and_types.begin(), dictionary_names_and_types.end());
|
2017-04-28 18:33:31 +00:00
|
|
|
|
2017-12-25 21:10:46 +00:00
|
|
|
for (auto & column : columns)
|
2017-06-23 15:55:45 +00:00
|
|
|
{
|
|
|
|
if (namesAndTypesSet.find(column) == namesAndTypesSet.end())
|
|
|
|
{
|
2017-04-25 09:10:27 +00:00
|
|
|
std::string message = "Not found column ";
|
|
|
|
message += column.name + " " + column.type->getName();
|
|
|
|
message += " in dictionary " + dictionary_name + ". ";
|
|
|
|
message += "There are only columns ";
|
2017-12-25 21:10:46 +00:00
|
|
|
message += generateNamesAndTypesDescription(dictionary_names_and_types.begin(), dictionary_names_and_types.end());
|
2017-04-25 09:10:27 +00:00
|
|
|
throw Exception(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-28 21:36:27 +00:00
|
|
|
|
|
|
|
void registerStorageDictionary(StorageFactory & factory)
|
|
|
|
{
|
2017-12-30 00:36:06 +00:00
|
|
|
factory.registerStorage("Dictionary", [](const StorageFactory::Arguments & args)
|
2017-12-28 21:36:27 +00:00
|
|
|
{
|
2017-12-30 00:36:06 +00:00
|
|
|
if (args.engine_args.size() != 1)
|
2017-12-28 21:36:27 +00:00
|
|
|
throw Exception("Storage Dictionary requires single parameter: name of dictionary",
|
|
|
|
ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);
|
|
|
|
|
2018-01-12 18:56:13 +00:00
|
|
|
args.engine_args[0] = evaluateConstantExpressionOrIdentifierAsLiteral(args.engine_args[0], args.local_context);
|
2017-12-30 00:36:06 +00:00
|
|
|
String dictionary_name = typeid_cast<const ASTLiteral &>(*args.engine_args[0]).value.safeGet<String>();
|
2017-12-28 21:36:27 +00:00
|
|
|
|
2017-12-30 00:36:06 +00:00
|
|
|
const auto & dictionary = args.context.getExternalDictionaries().getDictionary(dictionary_name);
|
2017-12-28 21:36:27 +00:00
|
|
|
const DictionaryStructure & dictionary_structure = dictionary->getStructure();
|
|
|
|
|
|
|
|
return StorageDictionary::create(
|
2017-12-30 00:36:06 +00:00
|
|
|
args.table_name, args.columns, args.materialized_columns, args.alias_columns,
|
|
|
|
args.column_defaults, dictionary_structure, dictionary_name);
|
2017-12-28 21:36:27 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-15 13:58:40 +00:00
|
|
|
}
|