crc32

Function crc32 

Source
pub fn crc32(data: &[u8]) -> i64
Expand description

Computes the CRC-32 value of the given bytes.

query I
select crc32('\x00'::bytea);
----
3523407757

query I
select crc32(''::bytea);
----
0

query I
select crc32('The quick brown fox jumps over the lazy dog'::bytea);
----
1095738169