-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mysql: Add JSON support #251
Conversation
9f287d2
to
d7b1228
Compare
@@ -291,12 +291,14 @@ checksum = "130aac562c0dd69c56b3b1cc8ffd2e17be31d0b6c25b61c96b76231aa23e39e1" | |||
name = "cargo-sqlx" | |||
version = "0.1.0" | |||
dependencies = [ | |||
"anyhow", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not entirely sure why this is here, I just rebased on upstream master. Let me know if this should be removed.
2b493e5
to
0f408d6
Compare
Since the implementation of Encode and Decode for both mysql and postgres on serde's Value and RawValue were practically the same they were moved to the generic json module.
0f408d6
to
c96de85
Compare
Check out 1cdfb85
|
Regardless, great job pushing this through. 👍 |
Oh that's great that you could get rid of the clone! |
Fixes #143