Home
last modified time | relevance | path

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

/sqlite-3.40.0/ext/fts5/
H A Dfts5_config.c854 int nAutomerge = -1; in sqlite3Fts5ConfigSetValue() local
856 nAutomerge = sqlite3_value_int(pVal); in sqlite3Fts5ConfigSetValue()
858 if( nAutomerge<0 || nAutomerge>64 ){ in sqlite3Fts5ConfigSetValue()
861 if( nAutomerge==1 ) nAutomerge = FTS5_DEFAULT_AUTOMERGE; in sqlite3Fts5ConfigSetValue()
862 pConfig->nAutomerge = nAutomerge; in sqlite3Fts5ConfigSetValue()
924 pConfig->nAutomerge = FTS5_DEFAULT_AUTOMERGE; in sqlite3Fts5ConfigLoad()
H A Dfts5Int.h204 int nAutomerge; /* 'automerge' setting */ member
H A Dfts5_index.c4501 if( p->rc==SQLITE_OK && p->pConfig->nAutomerge>0 && ALWAYS((*ppStruct)!=0) ){ in fts5IndexAutomerge()
4513 fts5IndexMerge(p, ppStruct, nRem, p->pConfig->nAutomerge); in fts5IndexAutomerge()