fix tests

This commit is contained in:
Anton Popov 2022-04-29 21:33:59 +00:00
parent 9878cae3e8
commit db9f570594
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
14617701568871014978
12913842429399915005
8351543757058688770
6020241010869553514
6955381966182986171
12732328028874882204
12371801021764949421 Array(Tuple(UInt8, Array(Tuple(UInt8, Tuple(UInt8, UInt8, Array(Tuple(UInt8, UInt8)))))))

View File

@ -1,7 +1,7 @@
SELECT cityHash64([(1, 'a'), (2, 'b')]);
SELECT cityHash64([(1, 'c'), (2, 'b')]);
SELECT sipHash64([(1, 'a'), (2, 'b')]);
SELECT halfMD5([(1, 'a'), (2, 'b')]);
SELECT farmHash64([(1, 'a'), (2, 'b')]);
SELECT murmurHash2_64([(1, 'a'), (2, 'b'), (3, 'c')]);
SELECT cityHash64([(1, [(1, (3, 4, [(5, 6), (7, 8)]))]), (2, [])] AS c), toTypeName(c);