v0.8.4
This is pgrx v0.8.4
. It fixes a performance regression with the new zero-copy array support added in v0.8.0 along with a bug decoding arrays of Postgres cstring
s.
To upgrade, make sure to cargo install cargo-pgrx --locked
along with updating the version in your extension Cargo.toml
file.
What's Changed
- PR #1145 - This fixes a performance regression with the new zero-copy arrays and an off-by-one bug with arrays of cstrings. Locally, I'm seeing a roughly 60% improvement over v0.8.3 in iterating large
Array<T: FromDatum>
values whereT
is a fixed-size type such as a float8 or i32.
Full Changelog: v0.8.3...v0.8.4