Searched refs:COLFLAG_PRIMKEY (Results 1 – 9 of 9) sorted by relevance
481 }else if( pPk && (pTab->aCol[j].colFlags & COLFLAG_PRIMKEY)!=0 ){ in sqlite3Update()902 || (colFlags & COLFLAG_PRIMKEY)!=0 in sqlite3Update()
354 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()
1802 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()
840 }else if( pCol->colFlags & COLFLAG_PRIMKEY ){ in fkParentIsModified()
123 if( flg & COLFLAG_PRIMKEY ) printf(" PRIMARY KEY"); in sqlite3TreeViewColumnList()
1193 if( (pCol->colFlags & COLFLAG_PRIMKEY)==0 ){ in sqlite3Pragma()
2511 if( pTab->aCol[i].colFlags & COLFLAG_PRIMKEY ) break; in sqlite3SetMakeRecordP5()
3849 primarykey = (pCol->colFlags & COLFLAG_PRIMKEY)!=0; in sqlite3_table_column_metadata()
2130 #define COLFLAG_PRIMKEY 0x0001 /* Column is part of the primary key */ macro