Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dcallback.c512 if( pSchema->schemaFlags & DB_SchemaLoaded ){ in sqlite3SchemaClear()
515 pSchema->schemaFlags &= ~(DB_SchemaLoaded|DB_ResetWanted); in sqlite3SchemaClear()
H A DsqliteInt.h1353 u16 schemaFlags; /* Flags associated with this schema */ member
1361 #define DbHasProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))==(P))
1362 #define DbHasAnyProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))!=0)
1363 #define DbSetProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags|=(P)
1364 #define DbClearProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags&=~(P)
H A Dbuild.c3166 pTable->pSchema->schemaFlags |= DB_UnresetViews; in viewGetColumnNames()
H A Dbtree.c204 if( isIndex && (!pSchema || (pSchema->schemaFlags&DB_SchemaLoaded)==0) ){ in hasSharedCacheTableLock()