Summary
Fixes restart failures on established databases that were re-running calls_idx and other bootstrap indexes on every cold start.
Fixed
- Bootstrap gating — existing databases skip full schema DDL/index replay at boot (
postgresql bootstrap already complete, skipping). - Indexes outside transaction — fresh installs apply indexes after table DDL commits.
- Background index repair — any missing bootstrap indexes (including
calls_idx) are built withCREATE INDEX CONCURRENTLYafter the server is ready. - Clearer
57P01message when a migration connection is terminated mid-startup.
Also includes 26.06.13–26.06.14
- Deferred throttled log category backfill
- Auto-heal corrupted Postgres call indexes on
WriteCall - Startup reorder (workers before delayer restore)
See CHANGELOG.md for full details.