You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, due to Riak store works with binaries inside, the find_by/5 function doesn't works well with values different than binaries in the conditions.
E.g.: if you have an integer field in your model, and you want to find all results that match with that field:
sumo:find_by(my_model, [{age, <<"10">>}]).
The idea is modify sumo_store_riak to allow work with different data types, as defined in the schema, E.g:
sumo:find_by(my_model, [{age, 10}]).
The text was updated successfully, but these errors were encountered:
Currently, due to Riak store works with binaries inside, the
find_by/5
function doesn't works well with values different than binaries in the conditions.E.g.: if you have an integer field in your model, and you want to find all results that match with that field:
The idea is modify
sumo_store_riak
to allow work with different data types, as defined in the schema, E.g:The text was updated successfully, but these errors were encountered: