From 6c7d5d58fbde180a99fb5a81bc8301700064fea1 Mon Sep 17 00:00:00 2001 From: achulkov2 Date: Mon, 23 Dec 2019 17:38:42 +0300 Subject: [PATCH] Allow more dictGets --- dbms/src/Functions/FunctionsExternalDictionaries.h | 1 + 1 file changed, 1 insertion(+) diff --git a/dbms/src/Functions/FunctionsExternalDictionaries.h b/dbms/src/Functions/FunctionsExternalDictionaries.h index 2cd116ef7af..a8f1144718d 100644 --- a/dbms/src/Functions/FunctionsExternalDictionaries.h +++ b/dbms/src/Functions/FunctionsExternalDictionaries.h @@ -845,6 +845,7 @@ private: !executeDispatchComplex(block, arguments, result, dict_ptr) && !executeDispatchComplex(block, arguments, result, dict_ptr) && !executeDispatchComplex(block, arguments, result, dict_ptr) && + !executeDispatchComplex(block, arguments, result, dict_ptr) && !executeDispatchRange(block, arguments, result, dict_ptr)) throw Exception{"Unsupported dictionary type " + dict_ptr->getTypeName(), ErrorCodes::UNKNOWN_TYPE}; }