XXHASH32 (Lakehouse v1)
Calculates an xxHash32 32-bit hash value for a string. The value is returned as a UInt32 or NULL if the argument was NULL.
Analyze Syntax
Section titled “Analyze Syntax”func.xxhash32(<expr>)Analyze Examples
Section titled “Analyze Examples”func.xxhash32('1234567890')
┌─────────────────────────────┐│ func.xxhash32('1234567890') │├─────────────────────────────┤│ 3896585587 │└─────────────────────────────┘SQL Syntax
Section titled “SQL Syntax”XXHASH32(<expr>)SQL Examples
Section titled “SQL Examples”SELECT XXHASH32('1234567890');
┌────────────────────────┐│ xxhash32('1234567890') │├────────────────────────┤│ 3896585587 │└────────────────────────┘