mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 21:12:28 +00:00
fix typo in tryInitDictJoin
This commit is contained in:
parent
450e49fd28
commit
2a1c7d7336
@ -358,7 +358,7 @@ bool TableJoin::tryInitDictJoin(const Block & sample_block, ContextPtr context)
|
|||||||
if (!right_storage_dictionary)
|
if (!right_storage_dictionary)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
auto dict_name = right_storage_dictionary->getName();
|
auto dict_name = right_storage_dictionary->getDictionaryName();
|
||||||
|
|
||||||
auto dict_key = getDictKeyName(dict_name, context);
|
auto dict_key = getDictKeyName(dict_name, context);
|
||||||
if (!dict_key.has_value() || *dict_key != it_key->second)
|
if (!dict_key.has_value() || *dict_key != it_key->second)
|
||||||
|
Loading…
Reference in New Issue
Block a user