mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
11 lines
485 B
SQL
11 lines
485 B
SQL
-- Tags: no-fasttest
|
|
|
|
select javaHash('abc');
|
|
select javaHash('874293087');
|
|
select javaHashUTF16LE(convertCharset('a1가', 'utf-8', 'utf-16le'));
|
|
select javaHashUTF16LE(convertCharset('가나다라마바사아자차카타파하', 'utf-8', 'utf-16le'));
|
|
select javaHashUTF16LE(convertCharset('FJKLDSJFIOLD_389159837589429', 'utf-8', 'utf-16le'));
|
|
select javaHashUTF16LE(convertCharset('𐐀𐐁𐐂𐐃𐐄', 'utf-8', 'utf-16le'));
|
|
select hiveHash('abc');
|
|
select hiveHash('874293087');
|