rust_mysql_common icon indicating copy to clipboard operation
rust_mysql_common copied to clipboard

Common primitives of MySql protocol.

Results 20 rust_mysql_common issues
Sort by recently updated
recently updated
newest added

Hi @blackbeam, I have a `bit(1)` column in mysql and I cannot parse it into `bool`. I find that the code matches `[b'0']` and `[b'1']`. I am curious that why...

Following query fails: ``` INSERT INTO `my:table` VALUES (?); ``` ... with `MixedParams`, since it thinks `:table` is a param.

Hey, For the work I implemented defining the Heartbeet frequency from the client. I don't know if it's something that is worth implementing here but it's technically possible (and already...

Hi @blackbeam ! Thank you for all your work in the Rust MySQL community, I love your `mysql_async` crate. I wanted to add support for FromValue for [`unic-lang`](https://github.com/zbraniecki/unic-locale) so that...

If you use named parameters with upper case letters, the function `parse_named_params` returns an incorrect SQL query. Demonstration: ``` let query = "INSERT INTO users (user_key, userName, userpassword) VALUES (:user_key,...

Hello! Thanks for the crate! The host and port were already exposed but unused in `ComRegisterSlave`, so I did a little patch to expose them in `BinlogRequest`, so use them...

In this function you use the unsafe keyword for some safe expressions. We need to mark unsafe operations more precisely using unsafe keyword. Keeping unsafe blocks small can bring many...

Hello :) I'm trying to push mysql binlog events into a postgres table (weird, I know :)). To do that I'd like to get a JSON representation of the before...

Hi! MySQL supports new zstd compression alogrithm since 8.0.18. zstd looks very useful, much faster compression/decompression speeds. - https://dev.mysql.com/doc/refman/8.0/en/connection-compression-control.html - https://facebook.github.io/zstd/