mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 02:21:59 +00:00
Disable 'Dictionary' storage due to count() can return incorrect result
see test_dictionaries_redis/test_long.py::test_redis_dict_long
This commit is contained in:
parent
bb60f10035
commit
fcd2eaea72
@ -138,7 +138,9 @@ void IStorage::read(
|
||||
const size_t output_ports = pipe.numOutputPorts();
|
||||
const auto storage_name = getName();
|
||||
if (output_ports > 0 && output_ports < num_streams && storage_name != "SystemNumbers" && storage_name != "SourceFromSingleChunk"
|
||||
&& storage_name != "SystemOne")
|
||||
&& storage_name != "SystemOne"
|
||||
&& storage_name != "Dictionary") /// dictionaries are disabled due to some bug, count() can return wrong result
|
||||
/// see test_dictionaries_redis/test_long.py::test_redis_dict_long
|
||||
pipe.resize(num_streams);
|
||||
|
||||
readFromPipe(query_plan, std::move(pipe), column_names, storage_snapshot, query_info, context, getName());
|
||||
|
Loading…
Reference in New Issue
Block a user