Austin Bonander
Austin Bonander
Prepared statements don't just represent a performance improvement, but also a small improvement in ergonomics and a significant one in security. The extended query interface in the Postgres protocol allows...
IOCP more seems to be a specialized message queue for I/O results that supports a large number of readers; overlapped I/O can instead notify of completion to a Windows event...
Do you know of any other database clients that implement something like this?
It's honestly rather annoying that Clippy lints generated code at all. It should be able to tell from the hygiene information which code the user wrote and which code they...
Likely a similar issue to #1494 and I described a workaround there: https://github.com/launchbadge/sqlx/issues/1494#issuecomment-943667930
The ultimate problem is likely that something is changing the line endings in the `.sql` file, it may be Git or the editor you're using.
Try using a tool to compare the line endings of the file on Mac vs Linux.
Are they the exact same byte for byte?
I, too, have been watching the `migrations/` folders in our projects grow without end and wondering if we should add consolidation support and what that might look like. To support...
A coworker brought up the potential for ambiguities where whole or part of the new migration set matches the old set (maybe some files were copied verbatim). I think a...