Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dbuild.c2260 assert( pPk->pTable->tabFlags & TF_WithoutRowid ); in isDupColumn()
2376 pTab->tabFlags &= ~TF_WithoutRowid; in convertToWithoutRowidTable()
2388 pTab->tabFlags &= ~TF_WithoutRowid; in convertToWithoutRowidTable()
2699 if( tabOpts & TF_WithoutRowid ){ in sqlite3EndTable()
2709 p->tabFlags |= TF_WithoutRowid | TF_NoVisibleRowid; in sqlite3EndTable()
H A Dvtab.c851 pTab->tabFlags |= pNew->tabFlags & (TF_WithoutRowid|TF_NoVisibleRowid); in sqlite3_declare_vtab()
H A DsqliteInt.h2336 #define TF_WithoutRowid 0x00000080 /* No rowid. PRIMARY KEY is the key */ macro
2391 #define HasRowid(X) (((X)->tabFlags & TF_WithoutRowid)==0)
H A Dpragma.c1288 (pTab->tabFlags & TF_WithoutRowid)!=0, in sqlite3Pragma()
H A Dparse.y213 A = TF_WithoutRowid | TF_NoVisibleRowid; in table_option()
H A Dwhere.c6025 && (pTab->tabFlags & (TF_HasGenerated|TF_WithoutRowid))==0 in sqlite3WhereBegin()