Alfonso Eusebio

Results 6 comments of Alfonso Eusebio

**TL;DR**: I have an initial implementation of something that could address this issue. I think there are a number of user cases that are fairly common throughout different projects. Perhaps...

@weiznich Thanks for the detailed response and all the examples and references. I'll make sure to review in detail and try to find a solution within the available functionality. My...

Ok, I think I know where the issue comes from. In _sqlx_ the ENUM type is defined as having **char_set 63** (`binary`), which is what the `compatible()` method is testing...

Thanks for your input @euphbriggs! However, I believe that syntax is only usable in `query_as!()` macro, not so much in the method. From the errors that I'm getting it seems...

I did some more digging and this is what I can see. The DB server (or at least my version) is sending a `ColumnDefinition` for the ENUM column with `type=String`,...

Thank you for the workaround @amitavaghosh1 In fact, if you use the macro version (`query_as!`), and set the right types for your enums, the error doesn't come up. My guess...