On 05/07/2014 04:51 AM, sql...@charles.derkarl.org wrote:
I
In a more complex program, lsm seems to leak memory to no bounds, causing my
application.
Are bug reports against LSM even helpful?
I think they are. Thanks for the report. Now fixed here:
http://www.sqlite.org/src4/info/8a39847dafa3
I have this trivial program:
int main(int argc, char **argv)
{
lsm_db* db;
lsm_new(lsm_default_env(), &db);
lsm_open(db, "lsm");
lsm_cursor *csr;
lsm_csr_open(db, &csr);
lsm_csr_seek(csr, "a", 1, LSM_SEEK_GE);
lsm_csr_seek(csr, "a",
2 matches
Mail list logo