Austin Bonander

Results 748 comments of Austin Bonander

This can be built on top of #3383 when it's merged. Something like: ```toml [drivers.sqlite] load-extensions = ["uuid", "vsv"] ```

When initially implementing this, we actually used the MariaDB documentation for the most part because it's more readable. It shows `warning_count` (i.e. `num_warnings`) to be non-optional: https://mariadb.com/kb/en/com_stmt_prepare/#com_stmt_prepare_ok To be fair,...

I would consider this a bug in Doris because it reports compatibility with MySQL client 5.7 and later: https://doris.apache.org/docs/db-connect/database-connect#mysql-client 5.7 is definitely going to be expecting 12 bytes as well:...

opened https://github.com/apache/doris/issues/37690

@groobyming a minimal reproduction would be appreciated for the Doris bug report.

`delimiter` is a command of the MYSQL client, not the server: https://dev.mysql.com/doc/refman/8.0/en/stored-programs-defining.html It should not be necessary with SQLx as the migration machinery does not split on semicolons but passes...

The documentation you linked explains it though: > The example uses the [mysql](https://dev.mysql.com/doc/refman/8.4/en/mysql.html) client delimiter command to change the statement delimiter from ; to // while the procedure is being...

This is already partly addressed by #3130, but that doesn't include line information in the query itself.

What database are you using (Postgres/MySQL/MSSQL/SQLite)? I'm guessing SQLite because you're using `$1` as a bind parameter but Postgres doesn't support `u64`. We actually removed support for `u64` from the...

And the `repository.size` column is `NUMERIC`?