Hash related functions.
Returns a CRC32 hash for a given string expression.
hashCrc32(expression)
The data type of the returned value is string.
data record(s = "DQL is awesome!")| fieldsAdd hashCrc32(s)
Query result:
Computes the MD5 hash for a given string expression.
hashMd5(expression)
The data type of the returned value is string.
data record(s = "DQL is awesome!")| fieldsAdd hashMd5(s)
Query result:
Computes the SHA-1 hash for a given string expression.
hashSha1(expression)
The data type of the returned value is string.
data record(s = "DQL is awesome!")| fieldsAdd hashSha1(s)
Query result:
Returns a SHA-256 hash for the given expression.
hashSha256(expression)
The data type of the returned value is string.
data record(s = "DQL is awesome!")| fieldsAdd hashSha256(s)
Query result:
Returns a SHA-512 hash for the given expression.
hashSha512(expression)
The data type of the returned value is string.
data record(s = "DQL is awesome!")| fieldsAdd hashSha512(s)
Query result:
Returns a xxHash32 hash for a given string expression.
hashXxHash32(expression)
The data type of the returned value is string.
data record(s = "DQL is awesome!")| fieldsAdd hashXxHash32(s)
Query result:
Returns a xxHash64 hash for a given string expression.
hashXxHash64(expression)
The data type of the returned value is string.
data record(s = "DQL is awesome!")| fieldsAdd hashXxHash64(s)
Query result: