Skip to content

Files

Latest commit

7fdee34 · Oct 21, 2021

History

History
This branch is 648 commits behind pgcentralfoundation/pgrx:master.

bytea

Examples for working with Postgres bytea type.

Postgres' bytea type can be represented as a borrowed &[u8] or an owned Vec<u8> with Rust.

This example demonstrates how to use libflate to gzip/gunzip bytea (and text) data directly from UDFs.