Austin Bonander

Results 748 comments of Austin Bonander

This could now be supported in `sqlx.toml` (#3383) Something like ```toml [macros] default-offline = true ``` or maybe ```toml [macros] default-mode = 'offline' ```

@FSMaxB there aren't any changes in this PR that I would expect to fix #2805. Can you make sure it's not just a flaky test?

@FrenchGithubUser can you please provide an example project that reproduces the issue? Otherwise there's no place to start here.

We could store it in the `PgConnectOptions` along with the salt and iteration count. We just need to be careful to invalidate it if any of these things change: *...

Can you please make the issue title less verbose? It should be a _brief_ summary of the problem, not a complete description. > I also found that I can insert...

Yeah, `cargo sqlx -p ` or `cargo sqlx --workspace` to match existing Cargo idioms kind of makes sense.

The reason we don't support just bit-casting unsigned integers in Rust to signed integers in SQL (this applies to SQLite as well, which has the same problem) is that any...

> I can, and now to let my app work I should create 2 clients for 2 different databases instead just one client You can clone the client and set...

This unfortunately was to be expected, because Postgres only supports identifiers up to 63 bytes in length: https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS > The system uses no more than `NAMEDATALEN-1` bytes of an identifier;...

We should be able to support `deserialize_any` with the info RBWNAT gives us.