-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add Bool
type to MultiConnection
#3747
Add Bool
type to MultiConnection
#3747
Conversation
During trying to implement MultiConnection i found that the `Bool` type was missing. This PR adds this type.
I think just adding this impl would be a breaking change :( Existing users of |
I would also say this is a bug fix, since this is a missing default type. It's not that this is a whole new type not previously existing on the separate backends. |
cc @diesel-rs/core on whether or no we want to consider that as bug fix. |
I am not core but I would consider this a bug fix. |
This seems backwards compatible afaict so treating it as a bug fix seems fine |
IMO if somebody was competent enough to realize that impl was missing and implemented it manually without bothering to open an issue, breaking change is fair enough ^^ |
Thanks for the swift responses. Seems like we are all on line in calling this a bug fix 👍 @pksunkara Your input is appreciated here as well ❤️ |
We now also generate the necessary `FromSql`/`ToSql` impls for `chrono`/`time` types for `Time`/`Date`/`Timestamp`. This follows the same reasoning as #diesel-rs#3747.
We now also generate the necessary `FromSql`/`ToSql` impls for `chrono`/`time` types for `Time`/`Date`/`Timestamp`. This follows the same reasoning as #diesel-rs#3747.
We now also generate the necessary `FromSql`/`ToSql` impls for `chrono`/`time` types for `Time`/`Date`/`Timestamp`. This follows the same reasoning as #diesel-rs#3747.
We now also generate the necessary `FromSql`/`ToSql` impls for `chrono`/`time` types for `Time`/`Date`/`Timestamp`. This follows the same reasoning as #diesel-rs#3747.
We now also generate the necessary `FromSql`/`ToSql` impls for `chrono`/`time` types for `Time`/`Date`/`Timestamp`. This follows the same reasoning as #diesel-rs#3747.
…iconnection Add `Bool` type to MultiConnection
During trying to implement MultiConnection i found that the
Bool
type was missing.This PR adds this type.