-
Notifications
You must be signed in to change notification settings - Fork 1
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
Implement sphia_status #8
Comments
As we can't reliably use |
If we can create a cursor, is the db OK? int
sphia_status (sphia_t *self) {
void *c = sp_cursor(self->db);
if (c) {
sp_destroy(c);
return 0;
}
return -1;
} |
I've been looking into https://github.com/pmwkaa/sophia/blob/master/test/recover.c to see what type of things I can discern about statuses. I also have been looking there to see exactly what types of files should be "purged" |
I think for now we should keep this out of the first release. You'r right, someone can just |
Can we use |
@stephenmathieson I think we can |
No description provided.
The text was updated successfully, but these errors were encountered: