reverse_bytea

Function reverse_bytea 

Source
pub fn reverse_bytea(bytes: &[u8]) -> Box<[u8]>
Expand description

Reverses the bytes in the binary string.

ยงExample

query T
SELECT reverse('\x1234567890'::bytea);
----
\x9078563412