From 2a1c7d7336301fcb6f90f2690b033527e0d36573 Mon Sep 17 00:00:00 2001 From: vdimir Date: Tue, 29 Jun 2021 13:11:01 +0300 Subject: [PATCH] fix typo in tryInitDictJoin --- src/Interpreters/TableJoin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Interpreters/TableJoin.cpp b/src/Interpreters/TableJoin.cpp index a39aa9e6731..a24e1a9cc91 100644 --- a/src/Interpreters/TableJoin.cpp +++ b/src/Interpreters/TableJoin.cpp @@ -358,7 +358,7 @@ bool TableJoin::tryInitDictJoin(const Block & sample_block, ContextPtr context) if (!right_storage_dictionary) return false; - auto dict_name = right_storage_dictionary->getName(); + auto dict_name = right_storage_dictionary->getDictionaryName(); auto dict_key = getDictKeyName(dict_name, context); if (!dict_key.has_value() || *dict_key != it_key->second)