mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
13 lines
398 B
SQL
13 lines
398 B
SQL
-- Tags: no-fasttest
|
|
-- Ouput can be verified using: https://emn178.github.io/online-tools/ripemd-160/
|
|
|
|
SELECT hex(ripeMD160('The quick brown fox jumps over the lazy dog'));
|
|
|
|
SELECT hex(ripeMD160('The quick brown fox jumps over the lazy cog'));
|
|
|
|
SELECT hex(ripeMD160(''));
|
|
|
|
SELECT hex(ripeMD160('CheREpaha1512'));
|
|
|
|
SELECT hex(ripeMD160('A-very-long-string-that-should-be-hashed-using-ripeMD160'));
|