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

/freebsd-11-stable/contrib/sqlite3/
H A Dsqlite3.c16783 u16 schemaFlags; /* Flags associated with this schema */ member in struct:Schema
16791 #define DbHasProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))==(P))
16792 #define DbHasAnyProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))!=0)
16793 #define DbSetProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags|=(P)
16794 #define DbClearProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags&=~(P)
[all...]

Completed in 437 milliseconds