mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Fixed tests
This commit is contained in:
parent
844eb4ccdc
commit
97605b7c9c
@ -537,7 +537,7 @@ void RangeHashedDictionary<dictionary_key_type>::blockToAttributes(const Block &
|
||||
if constexpr (std::is_same_v<KeyType, StringRef>)
|
||||
key = copyStringInArena(string_arena, key);
|
||||
|
||||
if (likely(lower_bound < upper_bound))
|
||||
if (likely(lower_bound <= upper_bound))
|
||||
setAttributeValue(attribute, key, RangeInterval{lower_bound, upper_bound}, attribute_column[key_index]);
|
||||
|
||||
keys_extractor.rollbackCurrentKey();
|
||||
|
Loading…
Reference in New Issue
Block a user