Home
last modified time | relevance | path

Searched refs:nDbVal (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/ext/lsm1/lsm-test/
H A Dlsmtest1.c607 int nDbVal; in doDataTest3() local
613 dbrc = tdb_fetch(pDb, aKey, sizeof(aKey)-1, &pDbVal, &nDbVal); in doDataTest3()
617 testCompareInt(1, (nDbVal>0), &rc); in doDataTest3()
619 testCompareInt(1, (nDbVal<0), &rc); in doDataTest3()
H A Dlsmtest_main.c38 int nDbVal; in testFetch() local
43 rc = tdb_fetch(pDb, pKey, nKey, &pDbVal, &nDbVal); in testFetch()
45 if( rc==0 && (nVal!=nDbVal || (nVal>0 && lsm_memcmp(pVal, pDbVal, nVal))) ){ in testFetch()