Get rid of dynamic allocation in ParsedJson::Iterator.

This commit is contained in:
Vitaly Baranov 2019-08-16 15:48:48 +03:00
parent 75aa1d7858
commit 69ed5279b5
2 changed files with 2 additions and 2 deletions

2
contrib/simdjson vendored

@ -1 +1 @@
Subproject commit 9dfab9d9a4c111690a101ea0a7506a2b2f3fa414
Subproject commit e9be643db5cf1c29a69bc80ee72d220124a9c50e

View File

@ -1 +1 @@
SELECT DISTINCT JSONExtractRaw(concat('{"x":', rand() % 2 ? 'true' : 'false', '}'), 'x') AS res FROM numbers(100000) ORDER BY res;
SELECT DISTINCT JSONExtractRaw(concat('{"x":', rand() % 2 ? 'true' : 'false', '}'), 'x') AS res FROM numbers(1000000) ORDER BY res;