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

Remove the unused 'next_cookie' mechanism. (CVS 1634)

FossilOrigin-Name: c94a9759ca6346a8c32f388a7aa1f0f139d6abc2
This commit is contained in:
danielk1977
2004-06-19 09:35:36 +00:00
parent 92f9a1bbda
commit ec8450f6cb
7 changed files with 17 additions and 21 deletions

View File

@@ -23,7 +23,7 @@
** ROLLBACK
** PRAGMA
**
** $Id: build.c,v 1.223 2004/06/19 02:22:10 danielk1977 Exp $
** $Id: build.c,v 1.224 2004/06/19 09:35:36 danielk1977 Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -327,7 +327,6 @@ void sqlite3RollbackInternalChanges(sqlite *db){
** This routine is called when a commit occurs.
*/
void sqlite3CommitInternalChanges(sqlite *db){
db->aDb[0].schema_cookie = db->next_cookie;
db->flags &= ~SQLITE_InternChanges;
}