-
Notifications
You must be signed in to change notification settings - Fork 6.4k
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
Missing rocksdb_property_int_cf in C API #5249
Comments
Yeah it seems that |
Definitely. My C is weak so will need some review, but I'll have a stab at it. :) |
dvdplm
added a commit
to dvdplm/rocksdb
that referenced
this issue
Apr 30, 2019
vagogte
pushed a commit
to vagogte/rocksdb
that referenced
this issue
Jun 18, 2019
Summary: Adds the missing `rocksdb_property_int_cf` function to the C API to let consuming libraries avoid parsing strings. Fixes facebook#5249 Pull Request resolved: facebook#5268 Differential Revision: D15149461 Pulled By: maysamyabandeh fbshipit-source-id: e9fe5f1ad7c64066d921dba8473507269b51d331
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently the C API exposes
rocksdb_property_value
,rocksdb_property_int
androcksdb_property_value_cf
, however there is norocksdb_property_int_cf
. This seems like an oversight and an easy fix? Code refThe text was updated successfully, but these errors were encountered: