Merge pull request #6479 from vitlibar/no-allocation-in-simdjson-iterator

Get rid of dynamic allocation in ParsedJson::Iterator.
This commit is contained in:
Vitaly Baranov 2019-08-16 20:58:16 +03:00 committed by GitHub
commit e7a2565290
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;