Rails Daily: MySQL and PostgreSQL Database Enhancements
Rails merged two significant database adapter improvements today, adding MySQL lock options for DDL operations and PostgreSQL RESET command support for readonly queries.
Duration: PT1M47S
Episode overview
This episode is a short developer briefing from Rails Daily.
It explains recent repository work in plain language.
- Show: Rails Daily
- Published: 2026-03-14T10:05:25Z
- Audio duration: PT1M47S
Transcript excerpt
This excerpt keeps the crawler page concise. Listen to the episode or use the RSS feed for the full update.
Good morning, this is Rails Daily for March 14th, 2026.
Two notable database enhancements landed in the Rails codebase today, both focused on improving database adapter functionality.
Jean Boussier merged pull request #56972 from Dominik Darnel, which adds MySQL lock options and extends algorithm support to column DDL operations. This enhancement allows developers to specify lock and algorithm options when performing database schema changes in MySQL, giving them more control over how migrations…
The second merge was pull request #56945 from Francesco Rodriguez, adding support for PostgreSQL's RESET command in readonly query contexts. Previously, the RESET command was incorrectly flagged as a write operation, preventing its use in readonly database configurations. This fix properly categorizes RESET as a…
Both contributions include comprehensive test coverage and changelog entries. The MySQL enhancement required significant changes across the abstract MySQL adapter and schema creation components, while the PostgreSQL fix was a more targeted change to the database statements module.
What's next: These database adapter improvements should make Rails more production-friendly for teams…
Nearby episodes from Rails Daily
- Code Quality and Performance Fixes
- Database Performance and Code Cleanup
- ActionText Editor Updates and Test Improvements
- Weekly Recap - Security Hardening & Database Enhancements
- Security Fixes and SQLite Improvements
- Async Query Instrumentation Fix and Auth Generator Update
- ActionPack Test Cleanup
- ActiveRecord Cleanup and Configuration Fixes