diff --git a/tests/queries/0_stateless/02184_hash_functions_and_ip_types.reference b/tests/queries/0_stateless/02184_hash_functions_and_ip_types.reference index b99d6e74859..6e0a9985a5d 100644 --- a/tests/queries/0_stateless/02184_hash_functions_and_ip_types.reference +++ b/tests/queries/0_stateless/02184_hash_functions_and_ip_types.reference @@ -1,7 +1,6 @@ Row 1: ────── ipv4: 1.2.3.4 -halfMD5(toIPv4('1.2.3.4')): 14356538739656272800 farmFingerprint64(toIPv4('1.2.3.4')): 5715546585361069049 xxh3(toIPv4('1.2.3.4')): 14355428563589734825 wyHash64(toIPv4('1.2.3.4')): 13096729196120951355 @@ -27,7 +26,6 @@ yandexConsistentHash(toIPv4('1.2.3.4'), 42): 0 Row 1: ────── ipv6: fe80::62:5aff:fed1:daf0 -halfMD5(toIPv6('fe80::62:5aff:fed1:daf0')): 9503062220758009199 hex(MD4(toIPv6('fe80::62:5aff:fed1:daf0'))): E35A1A4FB3A3953421AB348B2E1A4A1A hex(MD5(toIPv6('fe80::62:5aff:fed1:daf0'))): 83E1A8BD8AB7456FC229208409F79798 hex(SHA1(toIPv6('fe80::62:5aff:fed1:daf0'))): A6D5DCE882AC44804382DE4639E6001612E1C8B5 diff --git a/tests/queries/0_stateless/02184_hash_functions_and_ip_types.sql b/tests/queries/0_stateless/02184_hash_functions_and_ip_types.sql index 85cee82ac4b..0cd4a52abd0 100644 --- a/tests/queries/0_stateless/02184_hash_functions_and_ip_types.sql +++ b/tests/queries/0_stateless/02184_hash_functions_and_ip_types.sql @@ -1,6 +1,5 @@ SELECT toIPv4('1.2.3.4') AS ipv4, - halfMD5(ipv4), farmFingerprint64(ipv4), xxh3(ipv4), wyHash64(ipv4), @@ -27,7 +26,6 @@ FORMAT Vertical; SELECT toIPv6('fe80::62:5aff:fed1:daf0') AS ipv6, - halfMD5(ipv6), hex(MD4(ipv6)), hex(MD5(ipv6)), hex(SHA1(ipv6)),