alu
alu
@mitchrmiller 's discovery inspired me to come up with a relatively quiet workaround. ```rust #[derive(Debug, sqlx::Decode, sqlx::Encode)] #[sqlx(rename_all = "lowercase")] enum Size { Small, Medium, Large, } impl sqlx::Type for...
@yoshidan So what should I do? Is there anything I can do to help?
@yuyang-ok Can you tell me the schema of the table and the query you are running? I could not reproduce the problem with the following method. ```sh $ docker run...
I used `--column-type-info` to check the returned types, and it appears that the `Type` and `Key` columns contain binary flags. It seems to work as expected if BINARY is also...
@abonander @DrewMcArthur Could these suffixes be considered interchangeable as well? - `*_ai`/`*_as` (Accent Insensitive/ Accent Sensitive) - `*_ci`/`*_cs` (Case Insensitive/Case Sensitive) - In other words, are they considered incompatible only...