CRC32 (Lakehouse v2)
Returns the CRC-32 checksum of a string as an unsigned integer.
Analyze Syntax
Section titled “Analyze Syntax”func.crc32(<str>)Analyze Examples
Section titled “Analyze Examples”func.crc32('hello')
┌───────────┐│ 907060870 │└───────────┘SQL Syntax
Section titled “SQL Syntax”CRC32(<str>)SQL Examples
Section titled “SQL Examples”SELECT CRC32('hello');
┌───────────┐│ 907060870 │└───────────┘