diff options
author | drh <drh@noemail.net> | 2014-08-05 11:04:21 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-08-05 11:04:21 +0000 |
commit | 2c5e35ffd159686bdba701a561292beee4351781 (patch) | |
tree | 24311de9ac9dfe73e4eefad33384eb5ffe20202d /src/callback.c | |
parent | 16d511a664c58b7410ce00fefabcbe8a72e347fe (diff) | |
download | sqlite-2c5e35ffd159686bdba701a561292beee4351781.tar.gz sqlite-2c5e35ffd159686bdba701a561292beee4351781.zip |
Rename the internal Schema.flags field to Schema.schemaFlags.
FossilOrigin-Name: 5ae80b3c8f032528359c8c762505ce24da8db96f
Diffstat (limited to 'src/callback.c')
-rw-r--r-- | src/callback.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callback.c b/src/callback.c index 260fe806b..46fbe2c21 100644 --- a/src/callback.c +++ b/src/callback.c @@ -447,9 +447,9 @@ void sqlite3SchemaClear(void *p){ sqlite3HashClear(&temp1); sqlite3HashClear(&pSchema->fkeyHash); pSchema->pSeqTab = 0; - if( pSchema->flags & DB_SchemaLoaded ){ + if( pSchema->schemaFlags & DB_SchemaLoaded ){ pSchema->iGeneration++; - pSchema->flags &= ~DB_SchemaLoaded; + pSchema->schemaFlags &= ~DB_SchemaLoaded; } } |