You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add custom socket transport support for Postgres and MySQL
Add `connect_socket()` methods to `PgConnection` and `MySqlConnection`
that accept any pre-connected socket implementing the `Socket` trait.
This enables using custom transport layers (e.g., vsock for AWS Nitro
Enclaves, QUIC, or other non-TCP/UDS transports) without forking sqlx.
Re-export `Socket` and `ReadBuf` traits from `sqlx::net` so users can
implement custom socket types.
0 commit comments