Rudolf B.
Rudolf B.
I just had the same issue. But it also happens when the files have completely different names. It happens because the hexdump is opened as a temporary tab. You can...
Hi @billy1624, sorry - it seems that I missed those issues. I'd probably use `chrono` as the other Date/Time types already rely on `chrono` (as far as I've seen) and...
I see. I prepared this now, but I'm still missing something: https://github.com/SeaQL/sea-orm/commit/e5ee4765469fe8d4920e7c58befcafa6802dddab I didn't find any related code dealing with `sqlx::Decode` for other `chrono` Types such as `DateTime` in `sea_orm`...
Is it safe to assume that there is still some code missing in sea_query? When adding ``` #[cfg(feature = "sqlx-postgres")] #[cfg_attr(docsrs, doc(cfg(feature = "sqlx-postgres")))] impl_into_active_value!(crate::prelude::PgInterval, Set); ``` in `active_model.rs`, I...
@ikrivosheev hello, i have to admit that I forgot about it. But this was pretty much done except for the uncertainty about `ToSql`. Do you think there might be any...
@ikrivosheev [src/driver/postgres.rs](https://github.com/Rudi3/sea-query/blob/3a21d56591dfa7ef8ac8e0e3163d4401e9c6dca2/src/driver/postgres.rs#L65) I decided to throw unimplemented if `to_sql` is called in the postgres driver.rs because postgres-types doesn't implement `ToSql` for `chrono::Duration` - as far as I could tell. I'm...
Hey, @billy1624! Unfortunately `ToSql` isn't implemented for `time::Duration` in `postgres-types` either. But I'll see if I can add `time::Duration` at least in here when I get to it.
Hello, I revised this PR and noticed that `to_sql` seems be run on a `Json` value rather than on e.g. `chrono::DateTime` or `chrono::Duration`. So it's converted to a string in...