Austin Bonander

Results 748 comments of Austin Bonander

Sure, although it should default to returning `None` if you're adding it as a trait method.

`String` should support decoding from `citext` without much change here as it's the same binary and text encoding as regular strings. However, a challenge here is that `citext` does not...

Honestly I think we can just add a couple checks: * if the type name is present and equals `citext` here: https://github.com/launchbadge/sqlx/blob/master/sqlx-core/src/postgres/types/str.rs#L13 * if the type name is present and...

We still have to do a lookup because all we get in the responses from the protocol is the type OID, but the connection will automatically resolve and cache unknown...

If you acquire a transaction by calling `.begin()` on ` Pool` then the lifetime on that `Transaction` can be `'static` as it internally takes ownership of a `PoolConnection` and returns...

> wonder now if there's some way that the ergonomics can be somehow improved here so it's not necessary to explicitly reborrow like this? My vague understanding now is that...

This looks to be the same as #1596 which I thought was fixed already, but I am able to reproduce this.

Added a followup to my original bug report on the SQLite forum: https://sqlite.org/forum/forumpost/712251ee03

I could see this added as a `--force` flag but it probably shouldn't do it by default. It would need superuser permissions and could break running applications that the user...

I meant superuser permissions on the database, not like `sudo` or anything like that. The default `postgres` user is a superuser, but if you're on a managed multitenant Postgres instance...