1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-18 10:21:03 +03:00

Fix typo in comment of prepare.c.

FossilOrigin-Name: 333c3ffe6d4d2293d01958812b9c02b0bf9796a4
This commit is contained in:
shaneh
2009-12-17 21:05:42 +00:00
parent 702b919a67
commit d77f56efe5
3 changed files with 9 additions and 19 deletions

View File

@@ -469,7 +469,7 @@ static void schemaIsValid(Parse *pParse){
}
/* Read the schema cookie from the database. If it does not match the
** value stored as part of the in the in-memory schema representation,
** value stored as part of the in-memory schema representation,
** set Parse.rc to SQLITE_SCHEMA. */
sqlite3BtreeGetMeta(pBt, BTREE_SCHEMA_VERSION, (u32 *)&cookie);
if( cookie!=db->aDb[iDb].pSchema->schema_cookie ){