ipfs / go-datastore

key-value datastore interfaces
MIT License
228 stars 64 forks source link

filter: values are now always bytes #126

Closed Stebalien closed 5 years ago

Stebalien commented 5 years ago

We used to support values with arbitrary types but this added more complexity than it helped (we never actually used arbitrary types, we just had a bunch of type assertions everywhere).

This change removes some vestigial arbitrary type support.