-
Notifications
You must be signed in to change notification settings - Fork 156
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 Clojure Map Interop #208
Comments
Over the longer term, it would be nice to have a proper mechanism to register how to encode data which the driver doesn't know about. |
If you really really want to define how you could interpret a data undefined, you might find implementing |
I am closing this issue as the fix already merged and a release with fix 1.0.5 has already be released. |
A Clojure map both implements the interfaces -
java.util.Map
andjava.lang.Iterable
.Currently while encoding the data, the latter interface is used and not the former. See
Value.value
method.It would be better to use the former. So if value is a instance of Map should be moved up in the method.
Thank you.
The text was updated successfully, but these errors were encountered: