Home
last modified time | relevance | path

Searched refs:lsm_csr_seek (Results 1 – 6 of 6) sorted by relevance

/sqlite-3.40.0/ext/lsm1/lsm-test/
H A Dlsmtest7.c34 ret = lsm_csr_seek(pCsr, "jjj", 3, LSM_SEEK_GE); in do_test_api1_lsm()
41 ret = lsm_csr_seek(pCsr, "jjj", 3, LSM_SEEK_LE); in do_test_api1_lsm()
48 ret = lsm_csr_seek(pCsr, "jjj", 3, LSM_SEEK_LEFAST); in do_test_api1_lsm()
61 ret = lsm_csr_seek(pCsr2, pKey, nKey, LSM_SEEK_EQ); in do_test_api1_lsm()
H A Dlsmtest_tdb3.c627 rc = lsm_csr_seek(csr, pKey, nKey, LSM_SEEK_EQ); in test_lsm_fetch()
678 rc = lsm_csr_seek(csr, pFirst, nFirst, LSM_SEEK_LE); in test_lsm_scan()
680 rc = lsm_csr_seek(csr, pLast, nLast, LSM_SEEK_GE); in test_lsm_scan()
686 rc = lsm_csr_seek(csr, pLast, nLast, LSM_SEEK_LE); in test_lsm_scan()
692 rc = lsm_csr_seek(csr, pFirst, nFirst, LSM_SEEK_GE); in test_lsm_scan()
H A Dlsmtest6.c96 if( rc==LSM_OK ) rc = lsm_csr_seek(pCsr, pKey, nKey, 0); in testOomFetch()
211 rc = lsm_csr_seek(pCsr, pKey, nKey, LSM_SEEK_LE); in testOomScan()
214 rc = lsm_csr_seek(pCsr, pKey, nKey, LSM_SEEK_GE); in testOomScan()
/sqlite-3.40.0/ext/lsm1/
H A Dlsm.h605 int lsm_csr_seek(lsm_cursor *pCsr, const void *pKey, int nKey, int eSeek);
H A Dlsm_main.c806 int lsm_csr_seek(lsm_cursor *pCsr, const void *pKey, int nKey, int eSeek){ in lsm_csr_seek() function
H A Dlsm_vtab.c811 rc = lsm_csr_seek(pCur->pLsmCur, pVal, nVal, seekType); in lsm1Filter()