Home
last modified time | relevance | path

Searched refs:notNull (Results 1 – 9 of 9) sorted by relevance

/sqlite-3.40.0/src/
H A Dpragma.c1208 pCol->notNull ? 1 : 0, in sqlite3Pragma()
1841 if( pCol->notNull==0 && !doTypeCheck ) continue; in sqlite3Pragma()
1871 if( pCol->notNull ){ in sqlite3Pragma()
1989 if( iCol>=0 && pTab->aCol[iCol].notNull ) continue; in sqlite3Pragma()
H A Dbuild.c1613 pCol->notNull = (u8)onError; in sqlite3AddNotNull()
2349 && (pTab->aCol[i].notNull==OE_None) in convertToWithoutRowidTable()
2351 pTab->aCol[i].notNull = OE_Abort; in convertToWithoutRowidTable()
2685 && pCol->notNull == OE_None in sqlite3EndTable()
2687 pCol->notNull = OE_Abort; in sqlite3EndTable()
4203 if( pTab->aCol[j].notNull==0 ){ in sqlite3CreateIndex()
H A Dinsert.c1741 onError = pCol->notNull; in sqlite3GenerateConstraintChecks()
2936 if( pDestCol->notNull && !pSrcCol->notNull ){ in xferOptimization()
H A Dalter.c377 if( pCol->notNull && !pDflt ){ in sqlite3AlterFinishAddColumn()
448 || (pCol->notNull && (pCol->colFlags & COLFLAG_GENERATED)!=0) in sqlite3AlterFinishAddColumn()
H A Dwherecode.c1775 if( (j>=0 && pIdx->pTable->aCol[j].notNull==0) || j==XN_EXPR ){ in sqlite3WhereCodeOneLoopStart()
H A Dmain.c3848 notnull = pCol->notNull!=0; in sqlite3_table_column_metadata()
H A Dwhere.c570 return pIdx->pTable->aCol[j].notNull; in indexColumnNotNull()
4569 && pIndex->pTable->aCol[iColumn].notNull==0 in wherePathSatisfiesOrderBy()
H A DsqliteInt.h2098 unsigned notNull :4; /* An OE_ code for handling a NOT NULL constraint */ member
H A Dexpr.c2515 && p->y.pTab->aCol[p->iColumn].notNull==0); in sqlite3ExprCanBeNull()