Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/sqlite3/
Dsqlite3.c14683 unsigned idxType:2; /* 1==UNIQUE, 2==PRIMARY KEY, 0==CREATE INDEX */ member
14707 #define IsPrimaryKeyIndex(X) ((X)->idxType==SQLITE_IDXTYPE_PRIMARYKEY)
97998 || (IsVirtual(pTable) && pIndex->idxType!=SQLITE_IDXTYPE_APPDEF) );
100279 u8 idxType /* The index type */
100301 if( IN_DECLARE_VTAB && idxType!=SQLITE_IDXTYPE_PRIMARYKEY ){
100497 pIndex->idxType = idxType;
100647 assert( pIdx->idxType!=SQLITE_IDXTYPE_APPDEF );
100677 if( idxType==SQLITE_IDXTYPE_PRIMARYKEY ) pIdx->idxType = idxType;
100879 if( pIndex->idxType!=SQLITE_IDXTYPE_APPDEF ){
108634 if( !HasRowid(pSrc) && pDestIdx->idxType==2 ){
[all …]