Added another test just in case

This commit is contained in:
Alexey Milovidov 2019-07-05 21:47:59 +03:00
parent b396a5a392
commit 6b357421fc
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,4 @@
123
Hello
Hello
0

View File

@ -0,0 +1,5 @@
SELECT visitParamExtractUInt('"a":123', 'a');
SELECT visitParamExtractString('"a":"Hello"', 'a');
SELECT visitParamExtractRaw('"a":Hello}', 'a');
SELECT sum(ignore(visitParamExtractRaw(concat('{"a":', reinterpretAsString(rand64())), 'a'))) FROM numbers(1000000);