Austin Bonander
Austin Bonander
Sorry it took so long to get to this. I really wanted to get #3383 done for 0.9.0 so this had to wait. Conflating the _method of sorting stored data_...
Since `geozero` already provides integration with SQLx for PostGIS types, I think this should live there.
This is a known issue because of how null inference works in the Postgres driver. Null inference takes its seed data from `NOT NULL` flags on table columns, so any...
@bonega another thought is, instead of generating an arbitrary database name, we could generate one based on the path of the test function that's running. If the database name is...
@bonega do you have time to look at my last comment?
To get the module path you'll probably need to make `#[sqlx::test]` emit a recursive invocation of itself with [`module_path!()`](https://doc.rust-lang.org/stable/std/macro.module_path.html) in its arguments. It's very fortunate that arguments to attributes are...
@bonega we could instead hash the path. A SHA-256 hash is incredibly unlikely to collide and can be encoded in 64 hex characters, so in Base64 (with dash and underscore)...
Tentatively closed by #3541
Likely related to #3387.