Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Ddelete.c912 pIdx->uniqNotNull ? pIdx->nKeyCol : pIdx->nColumn); in sqlite3GenerateRowIndexDelete()
978 nCol = (prefixOnly && pIdx->uniqNotNull) ? pIdx->nKeyCol : pIdx->nColumn; in sqlite3GenerateIndexKey()
H A Dbuild.c1623 pIdx->uniqNotNull = 1; in sqlite3AddNotNull()
2417 if( !db->init.imposterTable ) pPk->uniqNotNull = 1; in convertToWithoutRowidTable()
4141 pIndex->uniqNotNull = onError!=OE_None; in sqlite3CreateIndex()
4195 pIndex->uniqNotNull = 0; in sqlite3CreateIndex()
4204 pIndex->uniqNotNull = 0; in sqlite3CreateIndex()
5534 if( pIdx->uniqNotNull ){ in sqlite3KeyInfoOfIndex()
H A Danalyze.c1064 nColTest = pIdx->uniqNotNull ? pIdx->nKeyCol-1 : nCol-1; in analyzeOneTable()
H A Dinsert.c2596 pIdx->uniqNotNull ? pIdx->nKeyCol: pIdx->nColumn); in sqlite3CompleteInsertion()
H A Dwhere.c2963 if( iCol==XN_ROWID || pProbe->uniqNotNull in whereLoopAddBtreeIndex()
5224 opMask = pIdx->uniqNotNull ? (WO_EQ|WO_IS) : WO_EQ; in whereShortCut()
H A DsqliteInt.h2626 unsigned uniqNotNull:1; /* True if UNIQUE and NOT NULL for all columns */ member