pub fn crc32(data: &[u8]) -> i64Expand 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