hash
hash([args: storable]+) -> int64
Accepts a variable number of arguments of arbitrary types and returns a signed 64-bit hash of the values.
hash never returns null. hash is not a cryptographic hash function and should not be used as such.
Domain
This is a scalar function (calculates a single output value for a single input row).
Categories
Examples
make_col h:hash(@.x, @.y)
Create a column 'h' with the result of hashing the columns 'x' and 'y'
Updated 8 days ago