PostgreSQL: Weekly Recap - Testing Infrastructure & Bug Fixes
PostgreSQL development focused on testing improvements and bug fixes this week, with 30 commits addressing issues in hash operations, composite types, and graph table functionality. No pull requests were merged as developers concentrated on resolving technical debt and strengthening the codebase.
Duration: PT2M22S
Episode overview
This episode is a short developer briefing from PostgreSQL.
It explains recent repository work in plain language.
- Show: PostgreSQL
- Published: 2026-04-27T00:00:00Z
- Audio duration: PT2M22S
Transcript excerpt
This excerpt keeps the crawler page concise. Listen to the episode or use the RSS feed for the full update.
Welcome to the PostgreSQL weekly recap for April 20th through 27th, 2026.
Zero pull requests were merged this week, with 30 additional commits focusing on infrastructure improvements and bug fixes.
Starting with testing infrastructure, Álvaro Herrera moved REPACK CONCURRENTLY tests out of standard regression tests to resolve conflicts with minimal WAL level configurations. The tests now run under test_decoding, which ensures proper WAL level support.
Several significant bug fixes were implemented. David Rowley corrected faulty logic in hashed IN and NOT IN operations when using non-strict operators. The previous code incorrectly performed hash lookups for NULL values, potentially causing crashes or false positives. This fix affects custom user-defined types, as…
Heikki Linnakangas addressed a composite type validation gap, preventing types from becoming members of themselves through multirange types. This oversight from the original multirange implementation has been corrected and backpatched to version 14.
Graph table functionality received multiple improvements. Peter Eisentraut fixed collation assignment for expressions in GRAPH_TABLE COLUMNS clauses and resolved lateral reference…
Nearby episodes from PostgreSQL
- Partition Split Validation Rollback
- Weekly Recap - Security Fixes and Performance Diagnostics
- The Art of User-Friendly Maintenance
- Weekly Recap - Error Handling and Query Correctness
- Build Directory Path Fix
- String Formatting Fix
- Weekly Recap - Bug Fixes and Security Infrastructure
- Database Statistics and Array Coercion Fixes