-
Notifications
You must be signed in to change notification settings - Fork 41
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
Fix: Resolve error TypeError
"unhashable type list" (2nd pass)
#251
Fix: Resolve error TypeError
"unhashable type list" (2nd pass)
#251
Conversation
TypeError
"unhashable type list" (2)TypeError
"unhashable type list" (2nd pass)
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.
lgtm! 👍
Noting here for follow-up, I'm not getting consistent rendering across database platforms when I try to validate records converted from object type to string type. The differences are minor, but enough to break tests significantly. E.g. one database will write the string |
A fix for #244.
This is smaller scope than:
anyOf(string, object)
by casting toobject
/JSON
/VARIANT
#246In that PR, we modify the failover type to be
object
/JSON
/VARIANT
for cases ofanyOf(string, object)
. In this case, we don't change anything except to make sure that the expected exception is raised - and this triggers the expected failsafe behavior, without changing it.