Merge branch 'simdjson-update' of github.com:yandex/ClickHouse into simdjson-update

This commit is contained in:
Alexey Milovidov 2019-08-03 23:12:52 +03:00
commit 72c0892246

View File

@ -64,7 +64,7 @@ public:
{
/// Choose JSONParser.
#if USE_SIMDJSON
if (context.getSettings().allow_simdjson && Cpu::CpuFlagsCache::have_SSE42 && Cpu::CpuFlagsCache::have_PCLMUL)
if (context.getSettings().allow_simdjson && Cpu::CpuFlagsCache::have_AVX2)
{
Executor<SimdJSONParser>::run(block, arguments, result_pos, input_rows_count);
return;