Home
last modified time | relevance | path

Searched refs:LSM_INSERT (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/ext/lsm1/
H A Dlsm_tree.c114 assert( (keyflags & LSM_POINT_DELETE)==0 || (keyflags & LSM_INSERT)==0 );
427 switch( flags & (LSM_POINT_DELETE|LSM_INSERT|LSM_SEPARATOR) ){ in lsmFlagsToString()
430 case LSM_INSERT: zFlags[1] = '+'; break; in lsmFlagsToString()
1458 assert( flags==LSM_INSERT || flags==LSM_POINT_DELETE in treeInsertEntry()
1497 if( pRes->flags & LSM_INSERT ){ in treeInsertEntry()
1504 if( flags & (LSM_INSERT|LSM_POINT_DELETE) ){ in treeInsertEntry()
1585 flags = LSM_INSERT; in lsmTreeInsert()
2279 if( pTreeKey->flags & LSM_INSERT ){ in lsmTreeCursorValue()
H A Dlsm_sorted.c84 #define rtIsWrite(eType) (((eType) & LSM_INSERT)!=0)
1718 }else if( res==0 && (eType & LSM_INSERT) ){ in segmentPtrSeek()
1962 pPtr->eType &= ~LSM_INSERT; in seekInLevel()
2021 eType = LSM_INSERT|LSM_SYSTEMKEY; in multiCursorGetKey()
2149 int nc1 = (eType1 & (LSM_INSERT|LSM_POINT_DELETE))==0; in multiCursorDoCompare()
2763 if( (eType & LSM_INSERT)==0 ) return 0; in mcursorLocationOk()
3020 }else if( res==0 && (eType & LSM_INSERT) ){ in treeCursorSeek()
4184 if( (f & (LSM_INSERT|LSM_POINT_DELETE))==0 ){ in mergeRangeDeletes()
4185 if( eType & LSM_INSERT ){ in mergeRangeDeletes()
4186 f |= LSM_INSERT; in mergeRangeDeletes()
[all …]
H A DlsmInt.h183 #define LSM_INSERT 0x08 /* Insert this key and value */ macro