Home | History | Annotate | Download | only in dist

Lines Matching refs:schemaFlags

15079   u16 schemaFlags;     /* Flags associated with this schema */
15087 #define DbHasProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))==(P))
15088 #define DbHasAnyProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))!=0)
15089 #define DbSetProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags|=(P)
15090 #define DbClearProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags&=~(P)
60596 if( isIndex && (!pSchema || (pSchema->schemaFlags&DB_SchemaLoaded)==0) ){
103883 pTable->pSchema->schemaFlags |= DB_UnresetViews;
106537 if( pSchema->schemaFlags & DB_SchemaLoaded ){
106540 pSchema->schemaFlags &= ~(DB_SchemaLoaded|DB_ResetWanted);