ClickHouse/tests/queries/0_stateless/02293_hashid.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
603 B
MySQL
Raw Normal View History

-- Tags: no-backward-compatibility-check
SET allow_experimental_hash_functions = 1;
2022-05-07 01:25:20 +00:00
select number, hashid(number) from system.numbers limit 5;
select number, hashid(number, 's3cr3t', 16, 'abcdefghijklmnop') from system.numbers limit 5;
select hashid(1234567890123456, 's3cr3t');
2022-08-08 16:25:34 +00:00
select hashid(1234567890123456, 's3cr3t2');
2022-06-01 12:41:36 +00:00
SELECT hashid(1, hashid(2));
2022-08-08 16:25:34 +00:00
SELECT hashid(1, 'k5');
SELECT hashid(1, 'k5_othersalt');
-- https://github.com/ClickHouse/ClickHouse/issues/39672
SELECT
JSONExtractRaw(257, NULL),
hashid(1024, if(rand() % 10, 'truetruetruetrue', NULL), 's3\0r3t'); -- {serverError 43}