added is_object_id to list of valid config keys

This commit is contained in:
Павел Литвиненко 2018-02-07 01:35:47 +03:00
parent 8e61106450
commit 95ec20d92a

View File

@ -235,7 +235,7 @@ size_t DictionaryStructure::getKeySize() const
static void CheckAttributeKeys(const Poco::Util::AbstractConfiguration::Keys & keys)
{
static const std::unordered_set<std::string> valid_keys =
{ "name", "type", "expression", "null_value", "hierarchical", "injective" };
{ "name", "type", "expression", "null_value", "hierarchical", "injective", "is_object_id" };
for (const auto & key : keys)
{