Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dupdate.c481 }else if( pPk && (pTab->aCol[j].colFlags & COLFLAG_PRIMKEY)!=0 ){ in sqlite3Update()
902 || (colFlags & COLFLAG_PRIMKEY)!=0 in sqlite3Update()
H A Dalter.c354 if( pCol->colFlags & COLFLAG_PRIMKEY ){ in sqlite3AlterFinishAddColumn()
2159 if( pTab->aCol[iCol].colFlags & (COLFLAG_PRIMKEY|COLFLAG_UNIQUE) ){ in sqlite3AlterDropColumn()
2161 (pTab->aCol[iCol].colFlags&COLFLAG_PRIMKEY) ? "PRIMARY KEY" : "UNIQUE", in sqlite3AlterDropColumn()
H A Dbuild.c1802 pCol->colFlags |= COLFLAG_PRIMKEY; in makeColumnPartOfPrimaryKey()
2004 if( pCol->colFlags & COLFLAG_PRIMKEY ){ in sqlite3AddGenerated()
2348 if( (pTab->aCol[i].colFlags & COLFLAG_PRIMKEY)!=0 in convertToWithoutRowidTable()
2683 if( (pCol->colFlags & COLFLAG_PRIMKEY)!=0 in sqlite3EndTable()
H A Dfkey.c840 }else if( pCol->colFlags & COLFLAG_PRIMKEY ){ in fkParentIsModified()
H A Dtreeview.c123 if( flg & COLFLAG_PRIMKEY ) printf(" PRIMARY KEY"); in sqlite3TreeViewColumnList()
H A Dpragma.c1193 if( (pCol->colFlags & COLFLAG_PRIMKEY)==0 ){ in sqlite3Pragma()
H A Dinsert.c2511 if( pTab->aCol[i].colFlags & COLFLAG_PRIMKEY ) break; in sqlite3SetMakeRecordP5()
H A Dmain.c3849 primarykey = (pCol->colFlags & COLFLAG_PRIMKEY)!=0; in sqlite3_table_column_metadata()
H A DsqliteInt.h2130 #define COLFLAG_PRIMKEY 0x0001 /* Column is part of the primary key */ macro