packages feed

sydtest-persistent-postgresql 0.5.0.0 → 0.5.1.0

raw patch · 3 files changed

+13/−1 lines, 3 files

Files

CHANGELOG.md view
@@ -1,5 +1,12 @@ # Changelog +## [0.5.1.0] - 2026-09-14++### Changed++* `pg_basebackup` takes its checkpoint immediately rather than spreading it+  out. Starting a standby goes from about 13.5 seconds to about 0.17.+ ## [0.5.0.0] - 2026-09-13  ### Added
src/Test/Syd/Persistent/Postgresql.hs view
@@ -241,6 +241,11 @@             -- the copy a standby rather than a second copy of the data.             "--write-recovery-conf",             "--wal-method=stream",+            -- Take the checkpoint now rather than spreading it out. The+            -- default spreads it over the checkpoint interval, which is a wait+            -- proportional to how busy the server is, and this server is busy:+            -- a suite is running against it.+            "--checkpoint=fast",             -- Never dropped, and a physical slot with nothing attached to it             -- makes a server keep its write-ahead log forever. Harmless here             -- only because the server this slot is on is torn down moments
sydtest-persistent-postgresql.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           sydtest-persistent-postgresql-version:        0.5.0.0+version:        0.5.1.0 synopsis:       An persistent-postgresql companion library for sydtest category:       Testing homepage:       https://github.com/NorfairKing/sydtest#readme