Sage Griffin

Results 124 comments of Sage Griffin

If nothing else, we should definitely fix the empty schema file issue.

There doesn't appear to be an obvious solution here unless we get some changes landed in the language. Attempting to implement `Identifiable` for tuples just causes Rust to blow up...

My only issue with this is that we'd break all existing code which uses Diesel and reserved names. I think I'd be fine with an `edition` flag in `diesel.toml` which...

Fun fact: This is from the release notes of 0.2.0, when `get_result` was first introduced. > In the future, `get_result` may also check that only a single row was affected....

And just so it's clear, if we do this right, we should be able to have anything which implements `serde::ser::Serialize` implement `AsExpression` via `ToSql`

Yes, you can fairly easily add support for any types that you want within your application. I'm on my phone but will give examples later > Rather than wait for...

Oh. I didn't realize this was a comment on an existing issue. XD

So basically what you'd need to do is: ``` rust struct JsonB; impl HasSqlType for Pg { // ... } impl FromSql for String { // ... } expression_impls!(JsonB ->...

Hey folks -- today's my first day back from holiday vacation. I'm getting caught up on issues now. I've gone ahead and added this feature to the 0.10 timeline, as...

Switch the order of the columns on your model. It's trying to load the ID column into name and vice versa. This is a separate issue I'd like to improve....