chore(deps): update dependency gburd/pg_fts to v1.0.2 #15
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "renovate/gburd-pg_fts-1.x"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
1.0.1→1.0.2Release Notes
gburd/pg_fts (gburd/pg_fts)
v1.0.2Compare Source
Bug-fix release. No on-disk format change from 1.0.1; no REINDEX
required (
ALTER EXTENSION pg_fts UPDATE TO '1.0.2').invalid memory alloc request size) when decodinga posting block with a very large per-block position count. The
positions-decode path in
bm25_decode_termsized its scratch buffers with anunguarded allocation; when a block's summed term frequency pushed the buffer
past the 1 GB
MaxAllocSizelimit, the allocation threw and aborted whatevertriggered the decode -- a
CREATE INDEX CONCURRENTLYvalidation scan in thereported case, but the same path is reached by ordinary scans (count, ranked,
phrase), merges, and vacuum. A legitimately large position count now uses a
huge-safe allocation; a corrupt or inflated on-disk term-frequency (a class
the existing block-header and column-length corruption checks did not catch)
is now detected and rejected with a
WARNING(a bounded miss,REINDEXtorebuild), rather than reading past the block. This was the read-side
counterpart of the build-time huge-allocation fix; both sides are now guarded.
this class, so a regression that removed the guard would fail CI.
Configuration
📅 Schedule: (in timezone Europe/Paris)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate.