remove halfMD5 from test

This commit is contained in:
Yakov Olkhovskiy 2023-01-10 02:49:13 +00:00
parent 2559c49810
commit 87f8db89f9
2 changed files with 0 additions and 4 deletions

View File

@ -1,7 +1,6 @@
Row 1: Row 1:
────── ──────
ipv4: 1.2.3.4 ipv4: 1.2.3.4
halfMD5(toIPv4('1.2.3.4')): 14356538739656272800
farmFingerprint64(toIPv4('1.2.3.4')): 5715546585361069049 farmFingerprint64(toIPv4('1.2.3.4')): 5715546585361069049
xxh3(toIPv4('1.2.3.4')): 14355428563589734825 xxh3(toIPv4('1.2.3.4')): 14355428563589734825
wyHash64(toIPv4('1.2.3.4')): 13096729196120951355 wyHash64(toIPv4('1.2.3.4')): 13096729196120951355
@ -27,7 +26,6 @@ yandexConsistentHash(toIPv4('1.2.3.4'), 42): 0
Row 1: Row 1:
────── ──────
ipv6: fe80::62:5aff:fed1:daf0 ipv6: fe80::62:5aff:fed1:daf0
halfMD5(toIPv6('fe80::62:5aff:fed1:daf0')): 9503062220758009199
hex(MD4(toIPv6('fe80::62:5aff:fed1:daf0'))): E35A1A4FB3A3953421AB348B2E1A4A1A hex(MD4(toIPv6('fe80::62:5aff:fed1:daf0'))): E35A1A4FB3A3953421AB348B2E1A4A1A
hex(MD5(toIPv6('fe80::62:5aff:fed1:daf0'))): 83E1A8BD8AB7456FC229208409F79798 hex(MD5(toIPv6('fe80::62:5aff:fed1:daf0'))): 83E1A8BD8AB7456FC229208409F79798
hex(SHA1(toIPv6('fe80::62:5aff:fed1:daf0'))): A6D5DCE882AC44804382DE4639E6001612E1C8B5 hex(SHA1(toIPv6('fe80::62:5aff:fed1:daf0'))): A6D5DCE882AC44804382DE4639E6001612E1C8B5

View File

@ -1,6 +1,5 @@
SELECT SELECT
toIPv4('1.2.3.4') AS ipv4, toIPv4('1.2.3.4') AS ipv4,
halfMD5(ipv4),
farmFingerprint64(ipv4), farmFingerprint64(ipv4),
xxh3(ipv4), xxh3(ipv4),
wyHash64(ipv4), wyHash64(ipv4),
@ -27,7 +26,6 @@ FORMAT Vertical;
SELECT SELECT
toIPv6('fe80::62:5aff:fed1:daf0') AS ipv6, toIPv6('fe80::62:5aff:fed1:daf0') AS ipv6,
halfMD5(ipv6),
hex(MD4(ipv6)), hex(MD4(ipv6)),
hex(MD5(ipv6)), hex(MD5(ipv6)),
hex(SHA1(ipv6)), hex(SHA1(ipv6)),