-
Notifications
You must be signed in to change notification settings - Fork 11
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
Issue with Map with bool values #128
Comments
No, #126 wouldn't change the internals of Can you please share more of your code? Ideally as a failing test case. |
I think I understand. You have defined a column with type There is a similar type mismatch in Plausible: But yours is more complicated :) |
Thanks, I also found a mistake on my end so it doesn't seem to be an issue with ecto_ch, or I can fix it with a custom type 🙂 |
I am having an issue where I have a field like this:
and I insert data like this:
[%{"foo"=> true}, %{"bar" => false}]
.This causes an error:
true
is of course not a UInt8 so I suspect that is what is causing the error.But when I make it a
Bool
, I getPerhaps #126 happens to address this? But I thought I'd make an issue anyway.
The text was updated successfully, but these errors were encountered: