Chris Tsang
Chris Tsang
I think adding some panic docs is easiest right now. Converting panic to Error is not possible, unless ... we convert the API to return `Result` in `build()` etc, which...
hi, thanks for the thread. can you elaborate more on the proxy use case? it's mainly community contributed and I don't use it that much. I am open to ideas...
The API has always been: requiring all fields to be `Set`. however there is a workaround: ```rust let test_station = stations_creston::ActiveModel { station_id: ActiveValue::Set(628), network_id: ActiveValue::Set("CRESNEKN".to_owned()), station_name: ActiveValue::Set("example".to_owned()), ..stations_creston::ActiveModel::default_values() //
sorry, recently there's a lot of changes on master. can you cherry-pick your commit to merge into 0.32.x? I believe that's https://github.com/SeaQL/sea-query/pull/912/commits/77528da7c28fb02a540a1f1be34b38832056de12 ? sadly we can't depend on sqlx in...
what do you need this method for? can you instead add a method similar to `fn array_agg_distinct`?
sorry for the delay, if `count_distinct` is what you need, let's just add that specifically!
oh sorry seems like there is a conflict with existing code already
To further explain, in Postgres a enum is a (user-defined) type that's created by the CREATE TYPE statement. MySQL is more relaxed, it's basically a string with some constraints. In...
I realised there is no easy way to construct an `Array(None)`, so have to add another constructor.
we can add some `From` impl for `Option` as well, but we wouldn't be able to impl them for generic `Into`. Edit: having thought about that actually there aren't many...